4.0 KiB
4.0 KiB
Docker image with 3proxy
Why this image created?
3proxy is awesome and lightweight proxy-server. This image contains stable version with it and can be configured using environment variables.
Page on
hub.docker.com
can be found here.
TCP ports:
Port number | Description |
---|---|
3128 |
HTTP proxy |
1080 |
SOCKS proxy |
Supported tags
All supported image tags can be found here.
Supported environment variables
Variable name | Description | Example |
---|---|---|
AUTH_REQUIRED |
Require authorization? (default: false ) |
true , false |
PROXY_LOGIN |
Authorization login | username |
PROXY_PASSWORD |
Authorization password | password |
How can I use this?
For example:
$ docker run --rm -d \
-p "3128:3128/tcp" \ # http proxy
-p "1080:1080/tcp" \ # socks proxy
tarampampam/3proxy:latest
Or with auth settings:
$ docker run --rm -d \
-p "3128:3128/tcp" \ # http proxy
-p "1080:1080/tcp" \ # socks proxy
-e "AUTH_REQUIRED=true" \
-e "PROXY_LOGIN=evil" \
-e "PROXY_PASSWORD=live" \
tarampampam/3proxy:latest
Changes log
Changes log can be found here.
Support
If you will find any package errors, please, make an issue in current repository.
License
WTFPL. Use anywhere for your pleasure.