From 280ddaf44852963d85cfdd4b2808988a81efc28a Mon Sep 17 00:00:00 2001 From: Chris Bynum Date: Fri, 29 Jul 2016 12:24:12 -0400 Subject: [PATCH] Force image removal --- cleanup_and_stop.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cleanup_and_stop.sh b/cleanup_and_stop.sh index 38eae72..02bf4c3 100755 --- a/cleanup_and_stop.sh +++ b/cleanup_and_stop.sh @@ -3,7 +3,6 @@ source common.sh . echo "Cleaning up Docker image($maintainer/$imagename)" -docker rmi $maintainer/$imagename >> /dev/null +docker rmi -f $maintainer/$imagename >> /dev/null exit 0 -