tor daemon on alpine linux
10K+
Smallest minimal docker container for Tor network proxy daemon.
Suitable for relay, exit node or hidden service modes with SOCKS5 proxy enabled. It works well as a single self-contained container or in cooperation with other containers (like nginx and osminogin/php-fpm) for organizing complex hidden services on the Tor network.
The image is based on great Alpine Linux distribution so it is has extremely low size (less than 5 MB).
Star this project on Docker Hub :star2: https://hub.docker.com/r/try2codesecure/docker_tord/
/etc/tor config dir./var/lib/tor data dir.Automated builds of the image are available on Docker Hub and is the recommended method of installation.
docker pull try2codesecure/docker_tord
Alternatively you can build the image yourself.
docker build -t tor github.com/try2codesecure/docker_tord
docker run -p 9001:9001 -p 9030:9030 -v --name tor try2codesecure/docker_tord
# or
docker-compose up
After start Tor proxy available on localhost:9050
:exclamation:Warning:exclamation:
Don't bind SOCKSv5 port 9050 to public network addresses if you don't know exactly what you are doing (better bind to localhost as in the example above).
You can copy original tor config from container, modify and mount them back inside. Changing the configuration file is required for running Tor as exit node, relay or bridge. For some operation modes you need to expose additional ports (9001, 9030, 9051).
# Copy config
docker cp tor:/etc/tor/torrc /root/torrc
# ... modify torrc and run
docker run --rm --name tor \
-p 9001:9001 \ # ORPort
-p 9030:9030 \ # DIRPort
-v /root/torrc:/etc/tor/torrc:ro \
try2codesecure/docker_tord
[Unit]
Description=Tor service
Wants=network-online.target
Requires=docker.service
After=docker.service network.target network-online.target
[Service]
TimeoutStartSec=0
Restart=always
RestartSec=15s
ExecStartPre=/usr/bin/docker pull try2codesecure/docker_tord
ExecStart=/usr/bin/docker run --rm --name tor -p 127.0.0.1:9050:9050 try2codesecure/docker_tord
ExecStop=/usr/bin/docker stop tor
[Install]
WantedBy=multi-user.target
Example webserver deployment config with microservice architecture to setup Tor hidden service.
tor-node:
image: try2codesecure/docker_tord
links:
- nginx:myservice
nginx:
image: nginx
links:
- drupal:drupalhost
volumes:
- /srv/drupal:/srv/www:ro
- /srv/nginx/nginx.conf:/etc/nginx/nginx.conf:ro
drupal:
image: osminogin/php-fpm
links:
- mysql:mysqlhost
volumes:
- /srv/drupal:/srv/www
mysql:
image: mariadb
environment:
MYSQL_ROOT_PASSWORD: changeme
MIT
Content type
Image
Digest
Size
6.7 MB
Last updated
almost 8 years ago
docker pull try2codesecure/docker_tord