1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-23 01:39:27 +02:00

add mubeng

This commit is contained in:
kev 2024-09-24 13:49:01 +08:00
parent 19c76f36a9
commit b635941047
4 changed files with 34 additions and 0 deletions

View File

@ -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:

23
mubeng/README.md Normal file
View File

@ -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

0
mubeng/data/proxy.txt Normal file
View File

10
mubeng/docker-compose.yml Normal file
View File

@ -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