's'
This commit is contained in:
26
d2ypp2/services/mitmproxy/docker-compose.yml
Normal file
26
d2ypp2/services/mitmproxy/docker-compose.yml
Normal file
@@ -0,0 +1,26 @@
|
||||
version: "3.3"
|
||||
|
||||
services:
|
||||
mitmproxy:
|
||||
image: mitmproxy/mitmproxy:latest
|
||||
container_name: live-mitmproxy
|
||||
restart: unless-stopped
|
||||
command:
|
||||
- mitmweb
|
||||
- --web-host
|
||||
- 0.0.0.0
|
||||
- --web-port
|
||||
- "8081"
|
||||
- --listen-host
|
||||
- 0.0.0.0
|
||||
- --listen-port
|
||||
- "8080"
|
||||
- --set
|
||||
- web_open_browser=false
|
||||
- --set
|
||||
- block_global=false
|
||||
ports:
|
||||
- "${MITMPROXY_WEB_PORT:-8086}:8081"
|
||||
- "${MITMPROXY_PROXY_PORT:-8087}:8080"
|
||||
volumes:
|
||||
- ./data:/home/mitmproxy/.mitmproxy
|
||||
Reference in New Issue
Block a user