From e6acd6eb677b9da5942c54aa38eb93c46bead808 Mon Sep 17 00:00:00 2001 From: Sergios Kefalas Date: Sat, 30 Nov 2019 09:30:54 +0000 Subject: [PATCH] Fix also readiness check --- contrib/scripts/install/docker.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/scripts/install/docker.sh b/contrib/scripts/install/docker.sh index ce464cd3e0..0e43cd0430 100755 --- a/contrib/scripts/install/docker.sh +++ b/contrib/scripts/install/docker.sh @@ -131,5 +131,5 @@ $DOCKER_MAYAN_IMAGE >/dev/null echo "Done" echo -n "* Waiting for the Mayan EDMS container to be ready (might take a few minutes)..." -while ! curl --output /dev/null --silent --head --fail http://localhost:80; do sleep 1 && echo -n .; done; +while ! curl --output /dev/null --silent --head --fail http://localhost:$DOCKER_MAYAN_PORT; do sleep 1 && echo -n .; done; echo "Done"