From df73f6358db1e55c9e0f0b6d0156e5c5f271ae4a Mon Sep 17 00:00:00 2001 From: Joao Grassi Date: Fri, 5 Jan 2024 18:01:41 +0100 Subject: [PATCH] Use host network (#89) --- .github/workflows/api-integration-template.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/api-integration-template.yml b/.github/workflows/api-integration-template.yml index 24431d7..0ab5d78 100644 --- a/.github/workflows/api-integration-template.yml +++ b/.github/workflows/api-integration-template.yml @@ -36,7 +36,7 @@ jobs: - name: Run sample app # make sure to use the host network so the container can access the collector on localhost:4317 - run: docker run -d --net=host ${{ inputs.sample_name }} --rm + run: docker run -d --network host ${{ inputs.sample_name }} --rm - name: Test trace if: ${{ inputs.telemetry_signal == 'trace' }}