diff --git a/cyphernodeconf_docker/templates/installer/docker/docker-compose.yaml b/cyphernodeconf_docker/templates/installer/docker/docker-compose.yaml index 8e8f11d..fbbfb8f 100644 --- a/cyphernodeconf_docker/templates/installer/docker/docker-compose.yaml +++ b/cyphernodeconf_docker/templates/installer/docker/docker-compose.yaml @@ -29,7 +29,7 @@ services: lightning: image: cyphernode/clightning:<%= lightning_version %> - command: $USER /.lightning/entrypoint.sh + command: $USER /.lightning/bitcoin/entrypoint.sh <% if( lightning_expose ) { %> ports: - "9735:9735" diff --git a/dist/setup.sh b/dist/setup.sh index c5a81bb..3cfb378 100755 --- a/dist/setup.sh +++ b/dist/setup.sh @@ -477,11 +477,11 @@ install_docker() { fi copy_file $cyphernodeconf_filepath/lightning/c-lightning/config $LIGHTNING_DATAPATH/config 1 $SUDO_REQUIRED - copy_file $cyphernodeconf_filepath/lightning/c-lightning/entrypoint.sh $LIGHTNING_DATAPATH/entrypoint.sh 1 $SUDO_REQUIRED + copy_file $cyphernodeconf_filepath/lightning/c-lightning/entrypoint.sh $LIGHTNING_DATAPATH/bitcoin/entrypoint.sh 1 $SUDO_REQUIRED - if [[ ! -x $LIGHTNING_DATAPATH/entrypoint.sh ]]; then + if [[ ! -x $LIGHTNING_DATAPATH/bitcoin/entrypoint.sh ]]; then step " make entrypoint.sh executable" - sudo_if_required chmod +x $LIGHTNING_DATAPATH/entrypoint.sh + sudo_if_required chmod +x $LIGHTNING_DATAPATH/bitcoin/entrypoint.sh next fi @@ -749,7 +749,7 @@ NOTIFIER_VERSION="v0.2.4" PROXYCRON_VERSION="v0.2.4" OTSCLIENT_VERSION="v0.2.4" PYCOIN_VERSION="v0.2.4" -CYPHERAPPS_VERSION="v0.2.2" +CYPHERAPPS_VERSION="dev" BITCOIN_VERSION="v0.19.0.1" LIGHTNING_VERSION="v0.8.0"