1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-23 01:39:27 +02:00
dockerfiles/mitmproxy/docker-compose.yml

23 lines
485 B
YAML
Raw Normal View History

2021-09-07 12:48:28 +02:00
version: "3.8"
2024-04-22 09:54:57 +02:00
2021-09-07 12:48:28 +02:00
services:
2024-04-22 09:54:57 +02:00
2021-09-07 12:48:28 +02:00
mitmproxy:
image: mitmproxy/mitmproxy
command: mitmweb --web-host 0.0.0.0
ports:
- "8080:8080"
- "8081:8081"
volumes:
- ./data:/home/mitmproxy/.mitmproxy
restart: unless-stopped
2024-04-22 09:54:57 +02:00
mitmdump:
image: mitmproxy/mitmproxy
2024-04-22 10:14:26 +02:00
command: mitmdump --mode reverse:https://httpbin.org:443@8443 --flow-detail 4
2024-04-22 09:54:57 +02:00
ports:
- "8443:8443"
volumes:
- ./data:/home/mitmproxy/.mitmproxy
restart: unless-stopped