Skip to content

📲 Docker image with 3proxy - Tiny free proxy server

License

Notifications You must be signed in to change notification settings

inspectorioinc/3proxy-docker

 
 

Repository files navigation

Docker image with 3proxy

Build Status Release Status Image size Docker Pulls License

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. By default, it uses anonymous (information about client hiding) proxy settings. Logging in JSON format.

Page on hub.docker.com can be found here.

TCP ports:

Port number Description
3128 HTTP proxy
1080 SOCKS proxy

Supported tags

image stats

All supported image tags can be found here.

Supported environment variables

Variable name Description Example
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" \
    -p "1080:1080/tcp" \
    tarampampam/3proxy:latest

Or with auth settings:

$ docker run --rm -d \
    -p "3128:3128/tcp" \
    -p "1080:1080/tcp" \
    -e "PROXY_LOGIN=evil" \
    -e "PROXY_PASSWORD=live" \
    tarampampam/3proxy:latest

Releasing

New versions publishing is very simple - just make required changes in this repository, update changelog file and "publish" new release using repo releases page.

Docker images will be build and published automatically.

New release will overwrite the latest docker image tag in both registers.

Changes log

Release date Commits since latest release

Changes log can be found here.

Support

Issues Issues

If you will find any package errors, please, make an issue in current repository.

License

WTFPL. Use anywhere for your pleasure.

About

📲 Docker image with 3proxy - Tiny free proxy server

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dockerfile 89.3%
  • Shell 10.7%