socks5 server using go-socks5 with authentication options
6.3K
Simple socks5 server using go-socks5 with authentication options
version: '3'
services:
socks5:
image: justsky/socks5
container_name: socks5
ports:
- '1080:1080'
environment:
- PROXY_USER=<PROXY_USER> # Optional
- PROXY_PASSWORD=<PROXY_PASSWORD> # Optional
docker run -d --name socks5 -p 1080:1080 -e PROXY_USER=<PROXY_USER> -e PROXY_PASSWORD=<PROXY_PASSWORD> justsky/socks5
Leave PROXY_USER and PROXY_PASSWORD empty for skip authentication options while running socks5 server.
| 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 |
| TZ | String | UTC | Set Timezone like in many common Operation Systems |
Content type
Image
Digest
sha256:c5c22cbde…
Size
1.2 MB
Last updated
about 2 years ago
docker pull justsky/socks5