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-02 18:58:33 -07:00
|
|
|
volumes:
|
|
|
|
- ${INPUT_DIR:?INPUT_DIR environment variable isn't set}:/tmp/input
|
|
|
|
- ${OUTPUT_DIR:?OUTPUT_DIR environment variable isn't set}:/tmp/output
|
|
|
|
environment:
|
|
|
|
- FILE_DIR=/tmp/output
|
|
|
|
- MEDIA_DIR=/tmp/output
|
|
|
|
working_dir: /tmp/input
|
2019-04-02 07:22:46 +00:00
|
|
|
network_mode: "none"
|