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.

27 lines
738 B

version: "3"
services:
clightning_litecoin:
image: nicolasdorier/clightning
container_name: btcpayserver_clightning_litecoin
environment:
LIGHTNINGD_OPT: |
bitcoin-datadir=/etc/litecoin
bitcoin-rpcconnect=litecoind
ipaddr=${BTCPAY_HOST}
network=${NBITCOIN_NETWORK:-regtest}
chain=ltc
volumes:
- "clightning_litecoin_datadir:/root/.lightning"
- "litecoin_datadir:/etc/litecoin"
links:
- litecoind
btcpayserver:
environment:
BTCPAY_LTCLIGHTNING: "/etc/clightning_litecoin/lightning-rpc"
volumes:
- "clightning_litecoin_datadir:/etc/clightning_litecoin"
links:
- clightning_litecoin
volumes:
clightning_litecoin_datadir: