2
0
mirror of https://github.com/lnbook/lnbook synced 2024-11-18 21:28:03 +00:00
lnbook/code/docker/eclair/eclair-entrypoint.sh
Andreas M. Antonopoulos f94fe3fd93 Docker example fixes, upgrades and ch4 text edits
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
2021-09-12 16:12:43 +02:00

22 lines
358 B
Bash

#!/bin/bash
set -Eeuo pipefail
source /usr/local/bin/wait-for-bitcoind.sh
echo Starting eclair...
cd /usr/src/eclair-node-${ECLAIR_VER}-${ECLAIR_COMMIT}/
/bin/bash bin/eclair-node.sh -Declair.datadir="/eclair" &
cd /eclair
until eclair-cli -p eclair getinfo > /dev/null 2>&1
do
sleep 1
done
echo Eclair node started
sleep 2
# Executing CMD
exec "$@"