Files
container-openldap/test/tools/delete-image.sh
T
2014-06-19 14:55:02 +02:00

11 lines
162 B
Bash
Executable File

#!/bin/sh
. $(dirname $0)/config.prop
# remove test image
res=$(docker.io images | grep -c "$testImage")
if [ $res -ne 0 ]; then
docker.io rmi $testImage
fi