bisq/seednode/deployment_v2/docker/docker-compose.yml
2023-10-10 20:05:50 +02:00

37 lines
1.5 KiB
YAML

version: '3.7'
services:
bisq-seednode:
image: bisq/seednode:latest
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}
- --torControlHost=bisq-tor
- --torControlPort=9051
- --torControlPassword=bisq
bisq-tor:
image: bisq/tor:latest
command: [ "--allow-missing-torrc",
"--SOCKSPort", "0.0.0.0:9050",
"--ControlPort", "0.0.0.0:9051",
"--HashedControlPassword", "16:ED08CEBE4E91EA126089506E2880119E20A39054754D3916EAFF774046", # password: bisq
"--Log", "notice",
"--SafeSocks", "0",
"--HiddenServiceStatistics", "0",
"--AvoidDiskWrites", "1" ]