mirror of
https://github.com/osixia/container-openldap.git
synced 2026-09-24 23:39:55 -05:00
11 lines
162 B
Bash
Executable File
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
|