mirror of
https://github.com/lnbook/lnbook
synced 2024-11-01 03:20:53 +00:00
6f25921336
Sequencing of containers now works.
23 lines
368 B
Bash
23 lines
368 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
|
|
echo "$@"
|
|
exec "$@"
|