mirror of
https://github.com/lnbook/lnbook
synced 2024-11-01 03:20:53 +00:00
6f25921336
Sequencing of containers now works.
20 lines
391 B
Bash
20 lines
391 B
Bash
#!/bin/bash
|
|
set -Eeuo pipefail
|
|
|
|
source /usr/local/bin/wait-for-bitcoind.sh
|
|
|
|
echo Starting c-lightning...
|
|
lightningd --lightning-dir=/lightningd --daemon
|
|
|
|
until lightning-cli --lightning-dir=/lightningd --network regtest getinfo > /dev/null 2>&1
|
|
do
|
|
sleep 1
|
|
done
|
|
echo "Startup complete"
|
|
sleep 2
|
|
echo "Funding c-lightning wallet"
|
|
source /usr/local/bin/fund-c-lightning.sh
|
|
|
|
echo "$@"
|
|
exec "$@"
|