prianichnikov / docker-3proxy-socks

Dockerfile for 3proxy socks server

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

3proxy socks server docker image

Docker image of 3proxy socks server.

Three simple steps for the run socks proxy server

  1. Run the container:
docker run -d \
-p 5555:1080 \
--name 3proxy-socks \
prianichnikov/3proxy-socks
  1. Check the password:
docker logs 3proxy-socks

Login and password will be printed to the log during starting the proxy server.
By default username is "socks" and password will be generated randomly, for example:

--------------------------------------------------
Proxy user login:         socks
Proxy user password:      kd5Idval5hr91
--------------------------------------------------
  1. Proxy server will be ready for using on the port 5555/TCP, enjoy :)

Define own username and password

If you want to define own username and password sipmly set environment variables USER and PASSWORD during starting the container.

docker run -d \
-p 5555:1080 \
-e USER=user \
-e PASSWORD=Aiphah8Aul \
--name 3proxy-socks \
prianichnikov/3proxy-socks

Your's username and password will be printed to the log:

--------------------------------------------------
Proxy user login:         user
Proxy user password:      Aiphah8Aul
--------------------------------------------------

About

Dockerfile for 3proxy socks server


Languages

Language:Shell 56.8%Language:Dockerfile 43.2%