Merge pull request #6897 from alvasw/seednode_docker_compose_add_external_tor

seednode: Add external Tor to docker-compose.yml
This commit is contained in:
Alejandro García 2023-10-06 20:32:17 +00:00 committed by GitHub
commit 364e0c47aa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -21,3 +21,17 @@ services:
- --dumpBlockchainData=${BISQ_DUMP_BLOCKCHAIN} - --dumpBlockchainData=${BISQ_DUMP_BLOCKCHAIN}
- --dumpStatistics=${BISQ_DUMP_STATISTICS} - --dumpStatistics=${BISQ_DUMP_STATISTICS}
- --torControlPort=${BISQ_EXTERNAL_TOR_PORT} - --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" ]