thanhtoan1196 / docker-multitor2

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

docker-multitor

This is an Alpine Docker image that runs multior. Multitor creates a Proxy with multiple TOR instances wich are load-balanced. For detailed information about multitor, check out https://github.com/trimstray/multitor .

Build

git clone https://github.com/evait-security/docker-multitor

cd docker-multitor

docker build -t multitor .

Quick Start

# By default, the container runs with 5 Tor instances, HAProxy (frontend) and Privoxy (broker), which implicate the load balancer. The proxy is set up with port 16379 and the container will be removed after use.

docker run --rm -p 16379:16379 evait/multitor

# Start 20 tor instances
docker run --rm -e "TOR_INSTANCES=20" -p 16379:16379 evait/multitor 

Advance

You can also start the container interactively

# run interactive
docker run --name multitor -it -p 16379:16379 evait/multitor /bin/bash
# start multitor inside the container
multitor --init 5 --user root --socks-port 9000 --control-port 9900 --proxy privoxy --haproxy

For detailed information on how multior works and what options it provides, check out the multitor wiki https://github.com/trimstray/multitor/wiki/Manual

About


Languages

Language:Dockerfile 72.0%Language:Shell 28.0%