From 9f5f0369b9187eae96a7d6a8b1ceb247180c700b Mon Sep 17 00:00:00 2001 From: Jen Hamon Date: Tue, 19 Mar 2024 12:06:49 -0400 Subject: [PATCH] Adjust docker volumes --- .github/workflows/testing-integration.yaml | 2 +- compose.yaml | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/testing-integration.yaml b/.github/workflows/testing-integration.yaml index 7f7f98a7..e723902b 100644 --- a/.github/workflows/testing-integration.yaml +++ b/.github/workflows/testing-integration.yaml @@ -35,7 +35,7 @@ jobs: - name: Start MITM proxy instances run: | make prepare-proxy-config - docker-compose up -d + docker-compose --verbose up -d env: WORKDIR: ${{ github.workspace }} diff --git a/compose.yaml b/compose.yaml index 2cfc5d8c..5b4b4d43 100644 --- a/compose.yaml +++ b/compose.yaml @@ -5,9 +5,7 @@ services: ports: - 8080:8080 volumes: - - type: bind - source: $WORKDIR/.mitm/proxy1 - target: /home/mitmproxy/.mitmproxy + - proxy1:/home/mitmproxy/.mitmproxy proxy-w-auth: image: mitmproxy/mitmproxy @@ -15,6 +13,8 @@ services: ports: - 8081:8080 volumes: - - type: bind - source: $WORKDIR/.mitm/proxy2 - target: /home/mitmproxy/.mitmproxy \ No newline at end of file + - proxy2:/home/mitmproxy/.mitmproxy + +volumes: + proxy1: + proxy2: