Skip to content

Instantly share code, notes, and snippets.

@ptisserand
Created February 14, 2020 18:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ptisserand/2368f212087944d7d217b034c57e6758 to your computer and use it in GitHub Desktop.
Save ptisserand/2368f212087944d7d217b034c57e6758 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-iface 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