Easy Socks5 Proxy with/without Authenticator. Image only 1MB
82
Basic Run with no Password
docker run -d --restart=always --name socks5 -p 1080:1080 minhbnix/socks5-proxy
Run docker container using specifit container port and expose it to host port 33333, without auth
docker run -d --restart=always --name socks5 -p 33333:33333 -e PROXY_PORT=33333 minhbnix/socks5-proxy
Run docker container using default container port 1080 and auth:
docker run -d --restart=always --name socks5 -p 1080:1080 -e PROXY_USER=<PROXY_USER> -e PROXY_PASSWORD=<PROXY_PASSWORD> minhbnix/socks5-proxy
PROXY_USER and PROXY_PASSWORD at your discretion.Run docker container using specifit container port 33333 and auth:
docker run -d --restart=always --name socks5 -p 33333:33333 -e PROXY_USER=<PROXY_USER> -e PROXY_PASSWORD=<PROXY_PASSWORD> -e PROXY_PORT=33333 minhbnix/socks5-proxy
PROXY_USER and PROXY_PASSWORD at your discretion.| ENV variable | Type | Default | Description |
|---|---|---|---|
| PROXY_USER | String | EMPTY | Set proxy user (also required existed PROXY_PASS) |
| PROXY_PASSWORD | String | EMPTY | Set proxy password for auth, used with PROXY_USER |
| PROXY_PORT | String | 1080 | Set listen port for application inside docker container |
| ALLOWED_DEST_FQDN | String | EMPTY | Allowed destination address regular expression pattern. Default allows all. |
| ALLOWED_IPS | String | Empty | Set allowed IP's that can connect to proxy, separator , |
services:
socks5-proxy:
image: minhbnix/socks5-proxy:latest
restart: always
ports:
- "1080:1080"
environment:
- PROXY_USER=abc
- PROXY_PASSWORD=abcabcabc
- PROXY_PORT=1080
BNIXVN Website: https://bnix.vn/km
Content type
Image
Digest
sha256:1757809cd…
Size
1.7 MB
Last updated
about 1 year ago
docker pull minhbnix/socks5-proxy