Tor Browser Bundle
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
Andy 46d4b5b409
bump to 10.0.8
il y a 3 ans
Dockerfile bump to 10.0.8 il y a 3 ans
EXTRA.md refactor il y a 5 ans
LICENSE refactor il y a 5 ans
README.md trivial il y a 5 ans
docker-compose.yml bump to 8.0.5 il y a 5 ans
launch refactor il y a 5 ans
sha512sum.txt bump to 10.0.8 il y a 3 ans
tor.keyring bump to 8.5.5 il y a 5 ans

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'