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 00:30:26 +00:00
|
|
|
volumes:
|
|
|
|
- ${MANIM_PATH:?MANIM_PATH environment variable isn't set}:/opt/manim
|
|
|
|
environment:
|
|
|
|
- PYTHONPATH=/opt/manim
|
2019-04-02 00:55:05 +00:00
|
|
|
working_dir: /opt/manim
|
2019-04-02 03:00:22 +00:00
|
|
|
entrypoint:
|
|
|
|
- python
|
|
|
|
- -m
|
|
|
|
- manim
|
2019-04-02 07:22:46 +00:00
|
|
|
network_mode: "none"
|