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.

54 lines
1.4 KiB

7 years ago
version: "3"
services:
lnd_litecoin:
6 years ago
image: btcpayserver/lnd:0.5-beta-2
7 years ago
container_name: btcpayserver_lnd_litecoin
restart: unless-stopped
7 years ago
environment:
LND_CHAIN: "ltc"
LND_ENVIRONMENT: "${NBITCOIN_NETWORK:-regtest}"
7 years ago
LND_EXPLORERURL: "http://nbxplorer:32838/"
7 years ago
LND_EXTRA_ARGS: |
restlisten=0.0.0.0:8080
litecoin.node=litecoind
litecoind.rpchost=litecoind:43782
6 years ago
litecoind.zmqpubrawblock=tcp://litecoind:28332
litecoind.zmqpubrawtx=tcp://litecoind:28333
7 years ago
externalip=${BTCPAY_HOST}:9736
alias=${LIGHTNING_ALIAS}
6 years ago
adminmacaroonpath=/data/admin.macaroon
noseedbackup=1
7 years ago
notls=1
ports:
- "9736:9735"
expose:
- "8080"
- "9736"
volumes:
- "lnd_litecoin_datadir:/data"
- "litecoin_datadir:/deps/.litecoin"
7 years ago
- "nbxplorer_datadir:/root/.nbxplorer"
7 years ago
links:
7 years ago
- nbxplorer
7 years ago
- litecoind
btcpayserver:
environment:
BTCPAY_LTCLIGHTNING: "type=lnd-rest;server=http://lnd_litecoin:8080/;macaroonfilepath=/etc/lnd_litecoin/admin.macaroon;allowinsecure=true"
volumes:
- "lnd_litecoin_datadir:/etc/lnd_litecoin"
links:
- lnd_litecoin
litecoind:
environment:
BITCOIN_EXTRA_ARGS: |
zmqpubrawblock=tcp://0.0.0.0:28332
6 years ago
zmqpubrawtx=tcp://0.0.0.0:28333
7 years ago
expose:
- "28332"
6 years ago
- "28333"
7 years ago
volumes:
lnd_litecoin_datadir: