Skip to content
Snippets Groups Projects
Commit f80bcec6 authored by Mirco Nasuti's avatar Mirco Nasuti
Browse files

forgot to fix a detail

parent 121dc88e
No related branches found
No related tags found
No related merge requests found
......@@ -12,6 +12,9 @@ fi
if [ $(docker ps | grep science-db-test | wc -l) -gt 0 ]; then
docker kill science-db-test
fi
if [ $(docker ps | grep meta-db-test | wc -l) -gt 0 ]; then
docker kill meta-db-test
fi
# Remove old containers
......@@ -25,3 +28,6 @@ fi
if [ $(docker ps -a | grep science-db-test | wc -l) -gt 0 ]; then
docker rm -f science-db-test
fi
if [ $(docker ps -a | grep meta-db-test | wc -l) -gt 0 ]; then
docker rm -f meta-db-test
fi
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment