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 #43 from automationator/master
Browse files Browse the repository at this point in the history
Fixes compatibility in initialize scripts
  • Loading branch information
automationator committed Mar 11, 2019
2 parents 3990da1 + 1f00a4f commit 670b1f4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bin/initialize-DEV.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

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
Expand Down
2 changes: 1 addition & 1 deletion bin/initialize-PROD.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

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
Expand Down
2 changes: 1 addition & 1 deletion bin/initialize-TEST.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

docker-compose -f docker-compose-TEST.yml up -d > /dev/null

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

0 comments on commit 670b1f4

Please sign in to comment.