summaryrefslogtreecommitdiffstats
path: root/testapi/update/templates/rm_images.sh
diff options
context:
space:
mode:
Diffstat (limited to 'testapi/update/templates/rm_images.sh')
-rwxr-xr-xtestapi/update/templates/rm_images.sh8
1 files changed, 0 insertions, 8 deletions
diff --git a/testapi/update/templates/rm_images.sh b/testapi/update/templates/rm_images.sh
deleted file mode 100755
index 6722573..0000000
--- a/testapi/update/templates/rm_images.sh
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/bin/bash
-
-number=`docker images | awk 'NR != 1' | grep testapi | wc -l`
-if [ $number -gt 0 ]; then
- images=`docker images -a | awk 'NR != 1' | grep testapi | awk '{print $1}'`
- echo "begin to rm images $images"
- docker images | awk 'NR != 1' | grep testapi | awk '{print $3}' | xargs docker rmi -f &>/dev/null
-fi