Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 1014 Bytes

File metadata and controls

27 lines (22 loc) · 1014 Bytes

Socks Server 5 in Docker

build status badge layers badge

Supported tags and respective Dockerfile links


Author


Usage

Run a Socks Server 5 instance
$ docker run -d --name socks-server -p 1080:1080 cogset/socks-server-5:latest

The port of socks server is 1080. The default authorization whose name is demo and password is 1234.

Set authorization

You can use SS_USER to set the name of authorization. You can use SS_PASS to set the pass of authorization.

$ docker run -d --name socks-server -p 1080:1080 -e SS_USER=user -e SS_PASS=pass cogset/socks-server-5:latest