Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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


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

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# docker-multitor

This is an Alpine Docker image that runs multitor. 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

```bash
# 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

```bash
# 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 multitor works and what options it provides, check out the multitor wiki https://github.com/trimstray/multitor/wiki/Manual