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.

58 lines
1.6 KiB

7 years ago
version: "3"
services:
lnd_litecoin:
image: btcpayserver/lnd:v0.5.2-beta-3
7 years ago
container_name: btcpayserver_lnd_litecoin
restart: unless-stopped
7 years ago
environment:
LND_CHAIN: "ltc"
LND_EXTERNALIP: ${BTCPAY_HOST}
LND_PORT: 9736
LND_ALIAS: ${LIGHTNING_ALIAS}
7 years ago
LND_ENVIRONMENT: "${NBITCOIN_NETWORK:-regtest}"
LND_READY_FILE: /root/.nbxplorer/ltc_fully_synched
7 years ago
LND_EXTRA_ARGS: |
restlisten=0.0.0.0:8080
rpclisten=127.0.0.1:10008
rpclisten=0.0.0.0:10009
7 years ago
litecoin.node=litecoind
litecoind.rpchost=litecoind:43782
6 years ago
litecoind.zmqpubrawblock=tcp://litecoind:28332
litecoind.zmqpubrawtx=tcp://litecoind:28333
adminmacaroonpath=/data/admin.macaroon
invoicemacaroonpath=/data/invoice.macaroon
readonlymacaroonpath=/data/readonly.macaroon
6 years ago
noseedbackup=1
7 years ago
notls=1
ports:
- "9736:9736"
7 years ago
expose:
- "8080"
- "9736"
volumes:
- "lnd_litecoin_datadir:/data"
- "litecoin_datadir:/deps/.litecoin"
7 years ago
- "nbxplorer_datadir:/root/.nbxplorer"
7 years ago
links:
- litecoind
btcpayserver:
environment:
BTCPAY_LTCLIGHTNING: "type=lnd-rest;server=http://lnd_litecoin:8080/;macaroonfilepath=/etc/lnd_litecoin/admin.macaroon;allowinsecure=true"
7 years ago
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: