Skip to content

Instantly share code, notes, and snippets.

@kelvinn
Forked from ptisserand/docker-compose.yml
Last active March 9, 2021 08:41
Show Gist options
  • Save kelvinn/e24546d37b6e60356099a762005ddae8 to your computer and use it in GitHub Desktop.
Save kelvinn/e24546d37b6e60356099a762005ddae8 to your computer and use it in GitHub Desktop.
docker-compose to run mitmproxy with web interface using docker volume
version: '3.4'
services:
app:
image: mitmproxy/mitmproxy
ports:
- 8080:8080
- 8081:8081
volumes:
- mitmproxy:/home/mitmproxy/.mitmproxy
command: mitmweb --web-host 0.0.0.0
volumes:
mitmproxy:
external: true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment