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

23 lines
643 B
Bash

#!/bin/bash
set -Eeuo pipefail
echo Starting eclair...
# bitcoind -datadir=/bitcoind -daemon
# until bitcoin-cli -datadir=/bitcoind getblockchaininfo > /dev/null 2>&1
# do
# sleep 1
# done
# echo bitcoind started
# export address=`cat /bitcoind/keys/demo_address.txt`
# export privkey=`cat /bitcoind/keys/demo_privkey.txt`
# echo "================================================"
# echo "Importing demo private key"
# echo "Bitcoin address: " ${address}
# echo "Private key: " ${privkey}
# echo "================================================"
# bitcoin-cli -datadir=/bitcoind importprivkey $privkey
# Executing CMD
echo "$@"
exec "$@"