Created
February 14, 2020 18:17
-
-
Save ptisserand/2368f212087944d7d217b034c57e6758 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-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