diff --git a/README.md b/README.md index 2511e8d..e8f0d4b 100644 --- a/README.md +++ b/README.md @@ -433,6 +433,7 @@ A collection of delicious docker recipes. - [x] minio/minio - [x] mongo :bucket: - [x] ccrisan/motioneye +- [x] ghcr.io/kitabisa/mubeng - [x] n8nio/n8n - [x] emqx/nanomq :cn: - [x] deluan/navidrome :musical_note: diff --git a/mubeng/README.md b/mubeng/README.md new file mode 100644 index 0000000..344f330 --- /dev/null +++ b/mubeng/README.md @@ -0,0 +1,23 @@ +mubeng +====== + +[mubeng][1] has 2 core functionality: + +1. Run proxy server as proxy IP rotation +2. Perform proxy checks + +## Quick Start + +```bash +$ mubeng --version + +$ echo "socks5://x.x.x.x:1080" | mubeng -v -a 0.0.0.0:3128 -f - + +$ curl localhost:3128/cert > mubeng.der + +$ openssl x509 -inform der -outform pem -in mubeng.der -out mubeng.crt + +$ curl --cacert mubeng.crt -x localhost:3128 https://ipinfo.io +``` + +[1]: https://github.com/kitabisa/mubeng diff --git a/mubeng/data/proxy.txt b/mubeng/data/proxy.txt new file mode 100644 index 0000000..e69de29 diff --git a/mubeng/docker-compose.yml b/mubeng/docker-compose.yml new file mode 100644 index 0000000..f92cc9c --- /dev/null +++ b/mubeng/docker-compose.yml @@ -0,0 +1,10 @@ +version: "3.8" +services: + mubeng: + image: ghcr.io/kitabisa/mubeng:v0.18.0 + command: -a 0.0.0.0:3128 -f /data/proxy.txt + ports: + - "3128:3128" + volumes: + - ./data:/data + restart: unless-stopped