mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-24 15:10:44 +01:00
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:
commit
364e0c47aa
1 changed files with 14 additions and 0 deletions
|
@ -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" ]
|
||||||
|
|
Loading…
Add table
Reference in a new issue