mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-24 08:52:15 +02:00
12 lines
243 B
YAML
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
|