2019-04-02 00:30:26 +00:00
|
|
|
version: '3.1'
|
|
|
|
|
|
|
|
services:
|
|
|
|
manim:
|
2019-04-02 07:22:46 +00:00
|
|
|
# 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: .
|
2019-04-02 03:00:22 +00:00
|
|
|
entrypoint:
|
|
|
|
- manim
|
2019-06-08 00:40:23 -07:00
|
|
|
- --media_dir=/tmp/output
|
2019-06-02 18:58:33 -07:00
|
|
|
volumes:
|
2019-06-15 00:45:14 -05:00
|
|
|
- ${INPUT_PATH:?INPUT_PATH environment variable isn't set}:/tmp/input
|
|
|
|
- ${OUTPUT_PATH:?OUTPUT_PATH environment variable isn't set}:/tmp/output
|
2019-06-02 18:58:33 -07:00
|
|
|
working_dir: /tmp/input
|
2019-04-02 07:22:46 +00:00
|
|
|
network_mode: "none"
|