From a91c0d3bc46380027ded0b4ef026282571ed0480 Mon Sep 17 00:00:00 2001 From: Devin Neal Date: Tue, 2 Apr 2019 07:22:46 +0000 Subject: [PATCH] add info to docker-compose file --- docker-compose.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 2b65b526..a39615ad 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,8 +2,10 @@ version: '3.1' services: manim: - image: manim - build: . + # 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: . volumes: - ${MANIM_PATH:?MANIM_PATH environment variable isn't set}:/opt/manim environment: @@ -13,3 +15,4 @@ services: - python - -m - manim + network_mode: "none"