1
0

Update LND image

This commit is contained in:
nicolas.dorier
2018-07-28 01:59:05 +09:00
parent 44176c9f28
commit 2378773b1e
2 changed files with 8 additions and 2 deletions

View File

@@ -2,12 +2,13 @@ version: "3"
services:
lnd_bitcoin:
image: btcpayserver/lnd:0.4.2.0
image: btcpayserver/lnd:0.4.2.0.1
container_name: btcpayserver_lnd_bitcoin
restart: unless-stopped
environment:
LND_CHAIN: "btc"
LND_ENVIRONMENT: "${NBITCOIN_NETWORK:-regtest}"
LND_EXPLORERURL: "http://nbxplorer:32838/"
LND_EXTRA_ARGS: |
restlisten=0.0.0.0:8080
rpclisten=127.0.0.1:10008
@@ -27,7 +28,9 @@ services:
volumes:
- "lnd_bitcoin_datadir:/data"
- "bitcoin_datadir:/deps/.bitcoin"
- "nbxplorer_datadir:/root/.nbxplorer"
links:
- nbxplorer
- bitcoind
btcpayserver:

View File

@@ -2,12 +2,13 @@ version: "3"
services:
lnd_litecoin:
image: btcpayserver/lnd:0.4.2.0
image: btcpayserver/lnd:0.4.2.0.1
container_name: btcpayserver_lnd_litecoin
restart: unless-stopped
environment:
LND_CHAIN: "ltc"
LND_ENVIRONMENT: "${NBITCOIN_NETWORK:-regtest}"
LND_EXPLORERURL: "http://nbxplorer:32838/"
LND_EXTRA_ARGS: |
restlisten=0.0.0.0:8080
litecoin.node=litecoind
@@ -25,7 +26,9 @@ services:
volumes:
- "lnd_litecoin_datadir:/data"
- "litecoin_datadir:/deps/.litecoin"
- "nbxplorer_datadir:/root/.nbxplorer"
links:
- nbxplorer
- litecoind
btcpayserver: