Go to file
2020-03-20 22:55:21 +03:00
.github/workflows Create GitHub workflow 2020-03-20 22:55:21 +03:00
hooks Bash script for hook 2019-11-20 22:54:34 +03:00
vendor Use env lib, add PROXY_PORT ENV variable 2018-06-13 22:34:35 +03:00
Changelog.md Actualize code changes im changelog 2019-08-27 18:09:01 +03:00
Dockerfile Playing with args and hooks for docker hub 2019-11-20 21:56:33 +03:00
Gopkg.lock Use env lib, add PROXY_PORT ENV variable 2018-06-13 22:34:35 +03:00
Gopkg.toml Use env lib, add PROXY_PORT ENV variable 2018-06-13 22:34:35 +03:00
README.md Add ifcfg url to test curl from docker container 2020-01-30 17:07:52 +06:00
server.go Use env lib, add PROXY_PORT ENV variable 2018-06-13 22:34:35 +03:00

go-socks5-proxy

Simple socks5 server using go-socks5 with authentication options

Start container with proxy

docker run -d --name socks5 -p 1080:1080 -e PROXY_USER=<PROXY_USER> -e PROXY_PASSWORD=<PROXY_PASSWORD> serjs/go-socks5-proxy

Leave PROXY_USER and PROXY_PASSWORD empty for skip authentication options while running socks5 server.

List of all supported config parameters

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

Test running service

Without authentication

curl --socks5 <docker host ip>:1080 http://ifcfg.co - result must show docker host ip (for bridged network)

or

docker run --rm curlimages/curl:7.65.3 -s --socks5 <docker host ip>:1080 http://ifcfg.co

With authentication - result must show docker host ip (for bridged network)

curl --socks5 <docker host ip>:1080 -U <PROXY_USER>:<PROXY_PASSWORD> http://ifcfg.co

or

docker run --rm curlimages/curl:7.65.3 -s --socks5 <PROXY_USER>:<PROXY_PASSWORD>@<docker host ip>:1080 http://ifcfg.co

Authors

  • Sergey Bogayrets

See also the list of contributors who participated in this project.