Tor Browser Bundle
Go to file
2016-05-02 19:59:26 +02:00
docker-compose.yml first commit 2016-04-30 12:45:10 +02:00
Dockerfile removed redundant packages 2016-05-02 19:59:26 +02:00
LICENSE Initial commit 2016-04-30 10:19:48 +00:00
README.md update README 2016-04-30 21:09:12 +02:00

Tor Bundle in Docker

Launching Tor

with Docker Compose

docker-compose run --rm tor

You can use the following shortcut function and place it to your ~/.bash_aliases file

function docker_helper() { (cd ~/docker/$1; docker-compose run --rm "$@" & disown) }
function tor() { (docker_helper $FUNCNAME $@) }

with Docker

docker run --rm -ti \
           --read-only=true \
           -v /tmp/.X11-unix:/tmp/.X11-unix:ro \
           -v $XDG_RUNTIME_DIR/pulse:/run/user/1000/pulse:ro \
           -v $HOME/Downloads:/home/user/tor-browser_en-US/Browser/Downloads \
           -e DISPLAY=unix$DISPLAY \
           -e PULSE_SERVER=unix:$XDG_RUNTIME_DIR/pulse/native \
           andrey01/tor