-
-
Save kelvinn/e24546d37b6e60356099a762005ddae8 to your computer and use it in GitHub Desktop.
docker-compose to run mitmproxy with web interface using docker volume
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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