mirror of
https://github.com/yzernik/squeaknode.git
synced 2026-08-18 13:09:08 +02:00
28 lines
494 B
YAML
28 lines
494 B
YAML
|
|
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
|
||
|
|
|
||
|
|
lnd:
|
||
|
|
environment:
|
||
|
|
- NETWORK=mainnet
|
||
|
|
|
||
|
|
squeaknode:
|
||
|
|
environment:
|
||
|
|
- NETWORK=mainnet
|
||
|
|
|
||
|
|
volumes:
|
||
|
|
# shared volume is needed for sharing the btcd certificate
|
||
|
|
shared:
|
||
|
|
driver: local
|