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 0fbde7d commit cb5e04eCopy full SHA for cb5e04e
scripts/start_container.sh
@@ -7,7 +7,7 @@ TOKEN=$(openssl rand -hex 24)
7
CONTAINER_NAME=${CONTAINER_NAME:-pymc3}
8
9
# stop and remove previous instances of the pymc3 container to avoid naming conflicts
10
-if [[ $(docker ps -q -f name=${CONTAINER_NAME}) ]]; then
+if [[ $(docker ps -aq -f name=${CONTAINER_NAME}) ]]; then
11
echo "Shutting down and removing previous instance of ${CONTAINER_NAME} container..."
12
docker rm -f ${CONTAINER_NAME}
13
fi
0 commit comments