You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lnbook/code/docker/eclair/eclair-entrypoint.sh

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