mirror of
https://github.com/lnbook/lnbook
synced 2024-11-15 00:15:05 +00:00
f94fe3fd93
The docker containers have been improved and updated. The payment demo script can be rerun and is resilient to errors and delays. The docker mini-tutotial and installation instructions have been moved to a new appendix
18 lines
319 B
Bash
18 lines
319 B
Bash
#!/bin/bash
|
|
set -Eeuo pipefail
|
|
|
|
source /usr/local/bin/wait-for-bitcoind.sh
|
|
|
|
echo Starting lnd...
|
|
lnd --lnddir=/lnd --noseedbackup > /dev/null &
|
|
|
|
until lncli --lnddir=/lnd -n regtest getinfo > /dev/null 2>&1
|
|
do
|
|
sleep 1
|
|
done
|
|
echo "Startup complete"
|
|
echo "Funding lnd wallet"
|
|
source /usr/local/bin/fund-lnd.sh
|
|
|
|
exec "$@"
|