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 97bc990978
commit 4a8c584d6c

View File

@@ -10,7 +10,7 @@ if ! docker images | grep -e "^svendowideit/ambassador "; then
docker pull svendowideit/ambassador:latest
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
fi