diff --git a/.circleci/config.yml b/.circleci/config.yml index eb274405..7ebd92f9 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -25,8 +25,8 @@ jobs: - "/bin/sh" - "-c" - > - while ! nc -z driver 8000; do sleep 1; done && - wget --quiet --waitretry=1 --tries=60 -O - http://driver:8000/tests/static/setup.sh | + while ! nc -z localhost 8000; do sleep 1; done && + wget --quiet --waitretry=1 --tries=60 -O - http://localhost:8000/tests/static/setup.sh | /bin/sh steps: - checkout @@ -37,7 +37,7 @@ jobs: - run: name: "Wait for ArangoDB starter" command: | - wget --quiet --waitretry=1 --tries=120 -O - http://db:8528/version + wget --quiet --waitretry=1 --tries=120 -O - http://localhost:8528/version if [ $? -eq 0 ]; then echo "starter ready" exit 0