mirror of
https://github.com/3b1b/manim.git
synced 2025-08-02 11:03:03 +08:00
17 lines
507 B
YAML
17 lines
507 B
YAML
version: '3.1'
|
|
|
|
services:
|
|
manim:
|
|
# comment this line if you build the image to prevent overwriting the tag
|
|
image: eulertour/manim:latest
|
|
# uncomment this line to build rather than pull the image
|
|
# build: .
|
|
entrypoint:
|
|
- manim
|
|
- --media_dir=/tmp/output
|
|
volumes:
|
|
- ${INPUT_PATH:?INPUT_PATH environment variable isn't set}:/tmp/input
|
|
- ${OUTPUT_PATH:?OUTPUT_PATH environment variable isn't set}:/tmp/output
|
|
working_dir: /tmp/input
|
|
network_mode: "none"
|