Nitrax
1
Hi fellas,
I found an interesting docker image on Docker Hub, dedicated to TOR hidden service deployement. The README is self explainatory and worth a try. 
https://hub.docker.com/r/goldy/tor-hidden-service/
Take your chance to create the new silk road 
Best,
Nitrax
9 Likes
Hmβ¦ frankly Iβm not convinced that you need Docker to solve such a simple task. For instance, on Arch Linux itβs as simple as:
- Install nginx or any service you need to hide:
sudo pacman -S nginx
sudo systemctl enable nginx
sudo systemctl start nginx
- Install tor:
sudo pacman -S tor torsocks
- Modify /etc/tor/torrc:
HiddenServiceDir /var/lib/tor/hidden_service/
HiddenServicePort 80 127.0.0.1:80
# optional: one more service
HiddenServicePort 22 127.0.0.1:22
- Start tor service automatically:
sudo systemctl enable tor
sudo systemctl start tor
- Donβt forget to backup /var/lib/tor/hidden_service/
6 Likes