2023-10-03 22:51:58 +02:00
|
|
|
version: '3.7'
|
|
|
|
|
|
|
|
services:
|
|
|
|
bisq-seednode:
|
|
|
|
image: bisq/seednode:latest
|
2023-10-10 19:59:14 +02:00
|
|
|
volumes:
|
|
|
|
- bisq_data:/bisq/bisq-seednode
|
2023-10-03 22:51:58 +02:00
|
|
|
command:
|
|
|
|
- --fullDaoNode=${BISQ_DAO_FULLNODE}
|
|
|
|
- --userDataDir=${BISQ_HOME}
|
|
|
|
- --appName=${BISQ_APP_NAME}
|
|
|
|
- --baseCurrencyNetwork=${BISQ_BASE_CURRENCY}
|
|
|
|
- --maxConnections=${BISQ_MAX_CONNECTIONS}
|
|
|
|
- --maxMemory=${BISQ_MAX_MEMORY}
|
|
|
|
- --nodePort=${BISQ_NODE_PORT}
|
|
|
|
- --btcNodes=${BITCOIN_P2P_HOST}:${BITCOIN_P2P_PORT}
|
|
|
|
- --rpcBlockNotificationHost=${BITCOIN_RPC_BLOCKNOTIFY_HOST}
|
|
|
|
- --rpcBlockNotificationPort=${BITCOIN_RPC_BLOCKNOTIFY_PORT}
|
|
|
|
- --rpcHost=${BITCOIN_RPC_HOST}
|
|
|
|
- --rpcPort=${BITCOIN_RPC_PORT}
|
|
|
|
- --rpcUser=${BITCOIN_RPC_USER}
|
|
|
|
- --rpcPassword=${BITCOIN_RPC_PASS}
|
|
|
|
- --dumpBlockchainData=${BISQ_DUMP_BLOCKCHAIN}
|
|
|
|
- --dumpStatistics=${BISQ_DUMP_STATISTICS}
|
2023-10-09 14:55:50 +02:00
|
|
|
- --torControlHost=bisq-tor
|
|
|
|
- --torControlPort=9051
|
|
|
|
- --torControlPassword=bisq
|
2023-10-05 21:39:23 +02:00
|
|
|
|
|
|
|
bisq-tor:
|
|
|
|
image: bisq/tor:latest
|
2023-10-10 19:59:14 +02:00
|
|
|
volumes:
|
|
|
|
- tor_data:/root/.tor
|
2023-10-05 21:39:23 +02:00
|
|
|
command: [ "--allow-missing-torrc",
|
2023-10-09 14:55:50 +02:00
|
|
|
"--SOCKSPort", "0.0.0.0:9050",
|
|
|
|
"--ControlPort", "0.0.0.0:9051",
|
|
|
|
"--HashedControlPassword", "16:ED08CEBE4E91EA126089506E2880119E20A39054754D3916EAFF774046", # password: bisq
|
2023-10-05 21:39:23 +02:00
|
|
|
"--Log", "notice syslog",
|
|
|
|
"--SafeSocks", "0",
|
|
|
|
"--HiddenServiceStatistics", "0",
|
|
|
|
"--AvoidDiskWrites", "1" ]
|
2023-10-10 19:59:14 +02:00
|
|
|
|
|
|
|
volumes:
|
|
|
|
bisq_data:
|
|
|
|
tor_data:
|