Socks5 proxy server with UDP associate and user/password authentication support.
100K+
A docker image with socks5 proxy server inside.
Image already on docker hub cooolin/socks5.
By using https://github.com/haxii/socks5, we support:
NOT yet support:
1-line command:
docker run --rm --name socks5 -p 1080:1080 -e PROXY_HOST=0.0.0.0 -e PROXY_PORT=1080 -e PROXY_USER=cooolin -e PROXY_PASS=password cooolin/socks5
with docker-compose.yml:
version: '3.4'
services:
squid:
image: cooolin/socks5
container_name: socks5
ports:
- "1080:1080"
environment:
- PROXY_HOST=0.0.0.0
- PROXY_PORT=1080
- PROXY_USER=cooolin
- PROXY_PASS=password
restart: always
then up it
docker-compose up -d
Content type
Image
Digest
Size
1.6 MB
Last updated
about 6 years ago
docker pull cooolin/socks5