nagev/tor

By nagev

Updated over 8 years ago

Download and compile Tor software. Starts Tor and exposes a SOCKS port for clients to use. Does not set up a Tor relay or exit-node.

Image
45

100K+

docker-tor-clientonly

Dockerfile to download and compile tor software. When run, tor starts with a SOCKS5 server accessible on port 9150.
This does not set up a tor relay or exit node.

To build using the Dockerfile
$ git clone https://github.com/np1/docker-tor-clientonly.git
$ cd docker-tor-clientonly
$ docker build -t nagev/tor .
Or pull the image from the Docker repository
$ docker pull nagev/tor
To run
$ docker run -d --name tor_instance -p 127.0.1.1:9150:9150 nagev/tor
To view the Tor log
$ docker logs tor_instance
To use, configure your browser/client to use a SOCKS server
Server IP: 127.0.1.1
Server port: 9150
To stop
$ docker stop tor_instance

Docker Pull Command

docker pull nagev/tor