You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.2 KiB
50 lines
1.2 KiB
version: "3"
|
|
|
|
services:
|
|
lnd_bitcoin:
|
|
image: btcpayserver/lnd:0.4.2.0
|
|
container_name: btcpayserver_lnd_bitcoin
|
|
restart: unless-stopped
|
|
environment:
|
|
LND_CHAIN: "btc"
|
|
LND_ENVIRONMENT: "${NBITCOIN_NETWORK:-regtest}"
|
|
LND_EXTRA_ARGS: |
|
|
restlisten=0.0.0.0:8080
|
|
bitcoin.node=bitcoind
|
|
bitcoind.rpchost=bitcoind:43782
|
|
bitcoind.zmqpath=tcp://bitcoind:28332
|
|
externalip=${BTCPAY_HOST}:9735
|
|
alias=${LIGHTNING_ALIAS}
|
|
noencryptwallet=1
|
|
notls=1
|
|
ports:
|
|
- "9735:9735"
|
|
expose:
|
|
- "8080"
|
|
- "9735"
|
|
volumes:
|
|
- "lnd_bitcoin_datadir:/data"
|
|
- "bitcoin_datadir:/deps/.bitcoin"
|
|
links:
|
|
- bitcoind
|
|
|
|
btcpayserver:
|
|
environment:
|
|
BTCPAY_BTCLIGHTNING: "type=lnd-rest;server=http://lnd_bitcoin:8080/;macaroonfilepath=/etc/lnd_bitcoin/admin.macaroon;allowinsecure=true"
|
|
volumes:
|
|
- "lnd_bitcoin_datadir:/etc/lnd_bitcoin"
|
|
links:
|
|
- lnd_bitcoin
|
|
|
|
bitcoind:
|
|
environment:
|
|
BITCOIN_EXTRA_ARGS: |
|
|
zmqpubrawtx=tcp://0.0.0.0:28332
|
|
zmqpubrawblock=tcp://0.0.0.0:28332
|
|
zmqpubrawtxlock=tcp://0.0.0.0:28332
|
|
zmqpubhashblock=tcp://0.0.0.0:28332
|
|
expose:
|
|
- "28332"
|
|
|
|
volumes:
|
|
lnd_bitcoin_datadir:
|