seednode: Add external Tor to docker-compose.yml

This commit is contained in:
Alva Swanson 2023-10-05 21:39:23 +02:00
parent 37e855994e
commit c457206859
No known key found for this signature in database
GPG Key ID: 004760E77F753090

View File

@ -21,3 +21,17 @@ services:
- --dumpBlockchainData=${BISQ_DUMP_BLOCKCHAIN}
- --dumpStatistics=${BISQ_DUMP_STATISTICS}
- --torControlPort=${BISQ_EXTERNAL_TOR_PORT}
bisq-tor:
image: bisq/tor:latest
command: [ "--allow-missing-torrc",
"--RunAsDaemon", "1",
"--SOCKSPort", "9050",
"--ControlPort", "9051",
"--Log", "notice syslog",
"--CookieAuthentication", "0",
"--CookieAuthFileGroupReadable", "1",
"--DataDirectoryGroupReadable", "1",
"--SafeSocks", "0",
"--HiddenServiceStatistics", "0",
"--AvoidDiskWrites", "1" ]