diff --git a/README.md b/README.md index c763436..fa6bdc2 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,6 @@ A collection of delicious docker recipes. - [ ] ipset - [ ] irc - [ ] libreswan -- [ ] mitmproxy - [ ] nagios - [ ] openswan - [ ] postfix @@ -342,6 +341,7 @@ A collection of delicious docker recipes. - [x] mailhog/mailhog - [x] tootsuite/mastodon - [x] getmeili/meilisearch :mag: +- [x] mitmproxy/mitmproxy - [x] deluan/navidrome :musical_note: - [x] netdata/netdata - [x] nextcloud diff --git a/mitmproxy/README.md b/mitmproxy/README.md new file mode 100644 index 0000000..8e7b9ca --- /dev/null +++ b/mitmproxy/README.md @@ -0,0 +1,11 @@ +mitmproxy +========= + +[mitmproxy][1] is a free and open source interactive HTTPS proxy. + +```bash +$ docker-compose up -d +$ curl --proxy 127.0.0.1:8080 --cacert data/mitmproxy-ca-cert.pem https://www.google.com +``` + +[1]: https://mitmproxy.org/ diff --git a/mitmproxy/docker-compose.yml b/mitmproxy/docker-compose.yml new file mode 100644 index 0000000..eeaf264 --- /dev/null +++ b/mitmproxy/docker-compose.yml @@ -0,0 +1,11 @@ +version: "3.8" +services: + mitmproxy: + image: mitmproxy/mitmproxy + command: mitmweb --web-host 0.0.0.0 + ports: + - "8080:8080" + - "8081:8081" + volumes: + - ./data:/home/mitmproxy/.mitmproxy + restart: unless-stopped