mirror of
https://github.com/osixia/container-openldap.git
synced 2026-09-26 01:00:47 -04:00
11 lines
187 B
Bash
Executable File
11 lines
187 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. $(dirname $0)/config.prop
|
|
|
|
# remove openldap test image
|
|
res=$(docker.io images | grep -c "$openldapTestImage")
|
|
|
|
if [ $res -ne 0 ]; then
|
|
docker.io rmi $openldapTestImage
|
|
fi
|