1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-25 00:08:49 +00:00
dockerfiles/mitmproxy/docker-compose.yml
2021-09-07 18:48:28 +08:00

12 lines
243 B
YAML

version: "3.8"
services:
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