3b1b-manim/docker-compose.yml

17 lines
507 B
YAML
Raw Normal View History

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
- --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
2019-04-02 07:22:46 +00:00
network_mode: "none"