2020-11-23 20:43:19 -05:00
|
|
|
version: '3'
|
|
|
|
|
services:
|
|
|
|
|
|
|
|
|
|
bitcoin-core:
|
|
|
|
|
command:
|
|
|
|
|
-printtoconsole
|
|
|
|
|
-testnet=0
|
|
|
|
|
-server=1
|
|
|
|
|
-rpcbind=0.0.0.0
|
|
|
|
|
-rpcallowip=0.0.0.0/0
|
|
|
|
|
-rpcuser=devuser
|
|
|
|
|
-rpcpassword=devpass
|
|
|
|
|
-zmqpubrawblock=tcp://0.0.0.0:28332
|
|
|
|
|
-zmqpubrawtx=tcp://0.0.0.0:28333
|
2021-09-01 06:06:11 -07:00
|
|
|
-zmqpubhashblock=tcp://0.0.0.0:28334
|
|
|
|
|
-zmqpubhashtx=tcp://0.0.0.0:28334
|
2020-11-23 20:43:19 -05:00
|
|
|
|
|
|
|
|
lnd:
|
|
|
|
|
environment:
|
|
|
|
|
- NETWORK=mainnet
|
|
|
|
|
|
2022-05-08 12:41:44 -07:00
|
|
|
clightning_client:
|
|
|
|
|
command:
|
|
|
|
|
- --bitcoin-rpcconnect=bitcoin-core
|
|
|
|
|
- --bitcoin-rpcuser=devuser
|
|
|
|
|
- --bitcoin-rpcpassword=devpass
|
|
|
|
|
- --network=mainnet
|
|
|
|
|
- --plugin-dir=/usr/libexec/c-lightning/plugins
|
|
|
|
|
- --alias=myitestnode
|
|
|
|
|
- --log-level=debug
|
|
|
|
|
|
2021-01-13 22:32:08 -08:00
|
|
|
# squeaknode:
|
|
|
|
|
# environment:
|
|
|
|
|
# - NETWORK=mainnet
|
2020-11-23 20:43:19 -05:00
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
|
# shared volume is needed for sharing the btcd certificate
|
|
|
|
|
shared:
|
|
|
|
|
driver: local
|