mirror of
https://github.com/bisq-network/bisq.git
synced 2025-03-01 09:40:15 +01:00
24 lines
992 B
YAML
24 lines
992 B
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}
|
||
|
- --torControlPort=${BISQ_EXTERNAL_TOR_PORT}
|