local customizations: fava, litd, extensions path, lndconnect
Some checks are pending
ci / regtest (push) Waiting to run
Some checks are pending
ci / regtest (push) Waiting to run
This commit is contained in:
parent
aafa8ce6db
commit
99aad424ef
3 changed files with 210 additions and 7 deletions
|
|
@ -222,7 +222,7 @@ services:
|
|||
hostname: lnd-1
|
||||
depends_on:
|
||||
- bitcoind
|
||||
image: boltz/lnd:0.18.4-beta
|
||||
image: boltz/lnd:0.19.3-beta
|
||||
restart: on-failure
|
||||
command:
|
||||
- --listen=lnd-1:9735
|
||||
|
|
@ -237,6 +237,7 @@ services:
|
|||
- --bitcoind.zmqpubrawblock=bitcoind:29001
|
||||
- --noseedbackup
|
||||
- --protocol.wumbo-channels
|
||||
- --rpcmiddleware.enable
|
||||
expose:
|
||||
- 8081
|
||||
- 9735
|
||||
|
|
@ -340,8 +341,12 @@ services:
|
|||
- -c
|
||||
- |
|
||||
echo "Waiting for LND to be ready..."
|
||||
sleep 30
|
||||
exec /usr/local/bin/litd \
|
||||
while ! nc -z lnd-1 10009 2>/dev/null; do
|
||||
echo "Waiting for lnd-1:10009..."
|
||||
sleep 2
|
||||
done
|
||||
sleep 5
|
||||
exec /bin/litd \
|
||||
--httpslisten=0.0.0.0:8443 \
|
||||
--insecure-httplisten=0.0.0.0:8080 \
|
||||
--uipassword=testpassword123 \
|
||||
|
|
@ -350,14 +355,12 @@ services:
|
|||
--remote.lnd.rpcserver=lnd-1:10009 \
|
||||
--remote.lnd.macaroonpath=/root/.lnd/data/chain/bitcoin/regtest/admin.macaroon \
|
||||
--remote.lnd.tlscertpath=/root/.lnd/tls.cert \
|
||||
--autopilot.disable=true \
|
||||
--loop.server.host=localhost:11009 \
|
||||
--loop.server.notls=true
|
||||
--autopilot.disable
|
||||
ports:
|
||||
- 8443:8443
|
||||
- 8080:8080
|
||||
volumes:
|
||||
- ./data/lnd-1:/root/.lnd:ro
|
||||
- ./data/lnd-1:/root/.lnd
|
||||
- ./data/litd:/root/.lit
|
||||
|
||||
eclair:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue