Fix wrong version check on docker wait image

This commit is contained in:
Loïc Guitaut
2015-09-22 15:58:22 +02:00
parent 140a4207da
commit 16e6f0899c

View File

@@ -10,7 +10,7 @@ if ! docker images | grep -e "^svendowideit/ambassador "; then
docker pull svendowideit/ambassador:latest docker pull svendowideit/ambassador:latest
fi fi
if ! docker images | grep -e "^aanand/wait " | grep -q "$PLUGIN_IMAGE_VERSION" ; then if ! docker images | grep -e "^aanand/wait "; then
docker pull aanand/wait:latest docker pull aanand/wait:latest
fi fi