A simple Docker container for running a Tor relay server. The container is configured to relay up to 750GB of data (each way) per month.
The container is also configured to listen on port 9001 for the relay traffic. Make sure to open the in your firewall.
Running the relay is super simple.
$ docker run -d \
-p 9001:9001 \
--restart=always \
--name=torrelay \
-t vpetersson/torrelay
It recommended that you provide a Nickname. You can do this using the following flag.
-e 'NICKNAME=MyTorRelay' \
It is also recommended that you provide your contact information. This is mostly used for contact information in case there is something wrong with your node.
-e 'CONTACTINFO=John Smith <jsmith@example.com>' \
Since Tor relies on keys on saved keys on disk for establishing trust, it is a good idea to use a volume to store your tor keys on the host (since Docker containers are ephemeral by nature).
You can do this by passing on the following.
-v '/some/local/path:/home/tor/.tor' \
The default value in this container is set to 750 GBytes per month (both ways). Depending on your situation, you may want to increase or decrease this using the following flag.
-e 'ACCOUNTINGMAX=750 GBytes' \
Please note that if you do use the bandwidth quota/accounting feature, the directory service feature (port 9030) will get disabled.