Skip to content

cogset/socks-server-5

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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