mirror of
https://github.com/yzernik/squeaknode.git
synced 2026-08-14 12:43:24 +02:00
* Got block subscription working in background thread * Use separate port for hashblock zeromq subscription * Update subscription on new block * Enable checking for block range in interest match function * Remove unused zmq subscriptions * Fix squeak interest match function
29 lines
583 B
YAML
29 lines
583 B
YAML
version: '3'
|
|
services:
|
|
|
|
bitcoin-core:
|
|
command:
|
|
-printtoconsole
|
|
-testnet=1
|
|
-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
|
|
-zmqpubhashblock=tcp://0.0.0.0:28334
|
|
-zmqpubhashtx=tcp://0.0.0.0:28334
|
|
|
|
lnd:
|
|
environment:
|
|
- NETWORK=testnet
|
|
|
|
# squeaknode:
|
|
# environment:
|
|
# - NETWORK=testnet
|
|
|
|
volumes:
|
|
# shared volume is needed for sharing the btcd certificate
|
|
shared:
|
|
driver: local
|