Merge pull request #19 from dokku/lg-fix-install

Fix wrong version check on docker wait image
This commit is contained in:
Jose Diaz-Gonzalez
2015-09-22 11:56:57 -04:00

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