diff --git a/.github/workflows/integration_tests.yml b/.github/workflows/integration_tests.yml index 14151a878..d035ba57b 100644 --- a/.github/workflows/integration_tests.yml +++ b/.github/workflows/integration_tests.yml @@ -142,9 +142,6 @@ jobs: cache-from: type=gha,scope=integration-tests-testing cache-to: type=gha,mode=max,scope=integration-tests-testing - - name: Setup tmate session - uses: mxschmitt/action-tmate@v3 - - name: Run docker compose run: | docker compose run -e DATABASE_NAME=opensips_${{ inputs.context }}_test gateway-bootstrap create_db ${{ inputs.context }} diff --git a/docker-compose.yml b/docker-compose.yml index 732768594..b2c4b2f21 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -5,7 +5,6 @@ # Postgres is not included in this docker compose configuration # because of the complexity of adding code to wait for postgres to start. -version: "3.9" volumes: workspace: opensips_fifo: @@ -145,12 +144,11 @@ services: test: [ "CMD-SHELL", - "wget --server-response --spider --quiet http://localhost:8080/health_checks 2>&1 | grep '200 OK' > /dev/null", + "wget --server-response --spider --quiet http://0.0.0.0:8080/health_checks 2>&1 | grep '200 OK' > /dev/null", ] interval: 30s timeout: 10s retries: 10 - start_period: 60s expose: - "8080/tcp"