Tor Browser Bundle
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Andy 46d4b5b409
bump to 10.0.8
3 years ago
Dockerfile bump to 10.0.8 3 years ago
EXTRA.md refactor 5 years ago
LICENSE refactor 5 years ago
README.md trivial 5 years ago
docker-compose.yml bump to 8.0.5 5 years ago
launch refactor 5 years ago
sha512sum.txt bump to 10.0.8 3 years ago
tor.keyring bump to 8.5.5 5 years ago

README.md

Tor Bundle in Docker

Launching Tor

docker-compose build && docker-compose up -d

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

alias docker="sudo -E docker"
alias docker-compose="sudo -E docker-compose"

function docker_helper() { { pushd ~/git/$1; docker-compose rm -fa "$1"; docker-compose up -d --name "$1" "$@"; popd; } }
function tor() { { docker_helper $FUNCNAME $@; } }

# OR
alias tor='docker-compose -f ~/git/tor/docker-compose.yml up -d'