From 23ba0a4eb2e3ef567b4c9a836d5ad09e135ccfd4 Mon Sep 17 00:00:00 2001 From: Ilshidur Date: Sun, 20 Oct 2019 18:09:47 +0200 Subject: [PATCH] docs(readme): missing environment variables --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 7b7f998..7939f9e 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,9 @@ docker run \ --name tor-relay \ -e RELAY_TYPE=bridge \ -e TOR_ORPort=9001 \ + -e TOR_Nickname=ididnteditheconfig \ + -e TOR_RelayBandwidthRate="100 KBytes" \ + -e TOR_RelayBandwidthBurst="200 KBytes" \ -e TZ=Europe/London \ -p 9001:9001 \ --restart always \ @@ -26,6 +29,9 @@ docker run \ --name tor-relay \ -e RELAY_TYPE=relay \ -e TOR_ORPort=9001 \ + -e TOR_Nickname=ididnteditheconfig \ + -e TOR_RelayBandwidthRate="100 KBytes" \ + -e TOR_RelayBandwidthBurst="200 KBytes" \ -e TZ=Europe/London \ -p 9001:9001 \ --restart always \ @@ -40,6 +46,9 @@ docker run \ --name tor-relay \ -e RELAY_TYPE=exit \ -e TOR_ORPort=9001 \ + -e TOR_Nickname=ididnteditheconfig \ + -e TOR_RelayBandwidthRate="100 KBytes" \ + -e TOR_RelayBandwidthBurst="200 KBytes" \ -e TZ=Europe/London \ -p 9001:9001 \ --restart always \