From 0f0d3d39e2f1411160505c412f903470e0b3d3c6 Mon Sep 17 00:00:00 2001 From: SerenaFeng Date: Thu, 28 Jul 2016 16:41:13 +0800 Subject: support docker build image during updating testapi add rm_images.sh script modify README.md add build image operations in update.yml JIRA: FUNCTEST-395 Change-Id: Ia9bd6e8e6d1096b9b946cb5508f4cac5ea6e6e25 Signed-off-by: SerenaFeng --- utils/test/result_collection_api/update/templates/rm_images.sh | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 utils/test/result_collection_api/update/templates/rm_images.sh (limited to 'utils/test/result_collection_api/update/templates') diff --git a/utils/test/result_collection_api/update/templates/rm_images.sh b/utils/test/result_collection_api/update/templates/rm_images.sh new file mode 100755 index 000000000..6722573b4 --- /dev/null +++ b/utils/test/result_collection_api/update/templates/rm_images.sh @@ -0,0 +1,8 @@ +#!/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 -- cgit 1.2.3-korg