feat: mitmproxy for traffic interception

This commit is contained in:
Alejandro Martinez
2026-04-12 02:50:25 +02:00
commit b7cbaa5ecd
2 changed files with 5 additions and 0 deletions

5
Dockerfile Normal file
View File

@@ -0,0 +1,5 @@
FROM mitmproxy/mitmproxy:latest
EXPOSE 8888 8081
HEALTHCHECK --interval=10s --timeout=5s --retries=10 --start-period=10s \
CMD curl -sf http://localhost:8081/ || exit 1
ENTRYPOINT ["mitmweb", "--web-host", "0.0.0.0", "--web-port", "8081", "-p", "8888", "--ssl-insecure", "--set", "web_open_browser=false"]