Skip to content

Commit

Permalink
Adjust docker volumes
Browse files Browse the repository at this point in the history
  • Loading branch information
jhamon committed Mar 19, 2024
1 parent 88a8c62 commit 9f5f036
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/testing-integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

Expand Down
12 changes: 6 additions & 6 deletions compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@ 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
command: mitmdump --set proxyauth=testuser:testpassword
ports:
- 8081:8080
volumes:
- type: bind
source: $WORKDIR/.mitm/proxy2
target: /home/mitmproxy/.mitmproxy
- proxy2:/home/mitmproxy/.mitmproxy

volumes:
proxy1:
proxy2:

0 comments on commit 9f5f036

Please sign in to comment.