You've already forked dockerfiles
mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-08-10 22:31:28 +02:00
add mitmproxy
This commit is contained in:
11
mitmproxy/README.md
Normal file
11
mitmproxy/README.md
Normal file
@@ -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/
|
11
mitmproxy/docker-compose.yml
Normal file
11
mitmproxy/docker-compose.yml
Normal file
@@ -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
|
Reference in New Issue
Block a user