2
0
mirror of https://github.com/lnbook/lnbook synced 2024-11-01 03:20:53 +00:00
lnbook/code/docker/c-lightning/c-lightning-entrypoint.sh
Andreas M. Antonopoulos 6f25921336 Docker (wait-for-bitcoind) and docker-compose fixes
Sequencing of containers now works.
2020-06-18 14:35:47 -04:00

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 "$@"