mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-25 07:27:18 +01:00
Merge pull request #6901 from alvasw/seednode_docker_connect_bisq_to_tor_container
seednode-docker: Connect Bisq and Tor container
This commit is contained in:
commit
7a02900edb
2 changed files with 6 additions and 10 deletions
|
@ -1,9 +1,6 @@
|
||||||
# java memory and remote management options
|
# java memory and remote management options
|
||||||
JDK_JAVA_OPTIONS=-Xms4096M -Xmx4096M -XX:+ExitOnOutOfMemoryError
|
JDK_JAVA_OPTIONS=-Xms4096M -Xmx4096M -XX:+ExitOnOutOfMemoryError
|
||||||
|
|
||||||
# use external tor (change to -1 for internal tor binary)
|
|
||||||
BISQ_EXTERNAL_TOR_PORT=9051
|
|
||||||
|
|
||||||
# bitcoin p2p settings
|
# bitcoin p2p settings
|
||||||
BITCOIN_P2P_HOST=127.0.0.1
|
BITCOIN_P2P_HOST=127.0.0.1
|
||||||
BITCOIN_P2P_PORT=8333
|
BITCOIN_P2P_PORT=8333
|
||||||
|
|
|
@ -20,18 +20,17 @@ services:
|
||||||
- --rpcPassword=${BITCOIN_RPC_PASS}
|
- --rpcPassword=${BITCOIN_RPC_PASS}
|
||||||
- --dumpBlockchainData=${BISQ_DUMP_BLOCKCHAIN}
|
- --dumpBlockchainData=${BISQ_DUMP_BLOCKCHAIN}
|
||||||
- --dumpStatistics=${BISQ_DUMP_STATISTICS}
|
- --dumpStatistics=${BISQ_DUMP_STATISTICS}
|
||||||
- --torControlPort=${BISQ_EXTERNAL_TOR_PORT}
|
- --torControlHost=bisq-tor
|
||||||
|
- --torControlPort=9051
|
||||||
|
- --torControlPassword=bisq
|
||||||
|
|
||||||
bisq-tor:
|
bisq-tor:
|
||||||
image: bisq/tor:latest
|
image: bisq/tor:latest
|
||||||
command: [ "--allow-missing-torrc",
|
command: [ "--allow-missing-torrc",
|
||||||
"--RunAsDaemon", "1",
|
"--SOCKSPort", "0.0.0.0:9050",
|
||||||
"--SOCKSPort", "9050",
|
"--ControlPort", "0.0.0.0:9051",
|
||||||
"--ControlPort", "9051",
|
"--HashedControlPassword", "16:ED08CEBE4E91EA126089506E2880119E20A39054754D3916EAFF774046", # password: bisq
|
||||||
"--Log", "notice syslog",
|
"--Log", "notice syslog",
|
||||||
"--CookieAuthentication", "0",
|
|
||||||
"--CookieAuthFileGroupReadable", "1",
|
|
||||||
"--DataDirectoryGroupReadable", "1",
|
|
||||||
"--SafeSocks", "0",
|
"--SafeSocks", "0",
|
||||||
"--HiddenServiceStatistics", "0",
|
"--HiddenServiceStatistics", "0",
|
||||||
"--AvoidDiskWrites", "1" ]
|
"--AvoidDiskWrites", "1" ]
|
||||||
|
|
Loading…
Add table
Reference in a new issue