Skip to content
This repository has been archived by the owner on Oct 10, 2019. It is now read-only.

Commit

Permalink
Merge pull request #42 from automationator/master
Browse files Browse the repository at this point in the history
Fixes start script compatibility
  • Loading branch information
automationator committed Mar 11, 2019
2 parents a72a08d + 0a5d78f commit 3990da1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bin/start-DEV.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
docker-compose -f docker-compose-DEV.yml build
docker-compose -f docker-compose-DEV.yml up -d > /dev/null

until $(curl --silent --head --insecure --request GET https://localhost:4443 | grep "302 FOUND" > /dev/null); do
until $(curl --silent --head --insecure --request GET https://127.0.0.1:4443 | grep "302 FOUND" > /dev/null); do
echo "Waiting for SIP (DEV) to start..."
sleep 1
done
2 changes: 1 addition & 1 deletion bin/start-PROD.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
docker-compose -f docker-compose-DEV.yml build
docker-compose -f docker-compose-PROD.yml up -d > /dev/null

until $(curl --silent --head --insecure --request GET https://localhost:443 | grep "302 FOUND" > /dev/null); do
until $(curl --silent --head --insecure --request GET https://127.0.0.1:443 | grep "302 FOUND" > /dev/null); do
echo "Waiting for SIP (PROD) to start..."
sleep 1
done

0 comments on commit 3990da1

Please sign in to comment.