We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 988f522 commit 7bd413dCopy full SHA for 7bd413d
scripts/start_container.sh
@@ -5,6 +5,10 @@ SRC_DIR=${SRC_DIR:-`pwd`}
5
NOTEBOOK_DIR=${NOTEBOOK_DIR:-$SRC_DIR/notebooks}
6
TOKEN=$(openssl rand -hex 24)
7
8
+# stop and remove previous instances of the pymc3 container to avoid naming conflicts
9
+docker stop pymc3
10
+docker rm pymc3
11
+
12
# note that all paths are relative to the build context, so . represents
13
# SRC_DIR to Docker
14
docker build \
0 commit comments