diff --git a/cyphernodeconf_docker/templates/installer/config.sh b/cyphernodeconf_docker/templates/installer/config.sh index e8af685..b4382f1 100644 --- a/cyphernodeconf_docker/templates/installer/config.sh +++ b/cyphernodeconf_docker/templates/installer/config.sh @@ -5,6 +5,7 @@ FEATURE_OTSCLIENT=<%= (features.indexOf('otsclient') != -1)?'true':'false' %> LIGHTNING_IMPLEMENTATION=<%= lightning_implementation %> PROXY_DATAPATH=<%= proxy_datapath %> GATEKEEPER_DATAPATH=<%= gatekeeper_datapath %> +GATEKEEPER_PORT=<%= gatekeeper_port %> TRAEFIK_DATAPATH=<%= traefik_datapath %> DOCKER_MODE=<%= docker_mode %> RUN_AS_USER=<%= run_as_different_user?username:'' %> diff --git a/cyphernodeconf_docker/templates/installer/start.sh b/cyphernodeconf_docker/templates/installer/start.sh index dcfdb85..fb9c225 100644 --- a/cyphernodeconf_docker/templates/installer/start.sh +++ b/cyphernodeconf_docker/templates/installer/start.sh @@ -26,6 +26,7 @@ start_apps() { elif [ -f "$APP_SCRIPT_PATH/docker-compose.yaml" ]; then export SHARED_HTPASSWD_PATH export GATEKEEPER_DATAPATH + export GATEKEEPER_PORT export LIGHTNING_DATAPATH export BITCOIN_DATAPATH export APP_SCRIPT_PATH diff --git a/cyphernodeconf_docker/templates/installer/stop.sh b/cyphernodeconf_docker/templates/installer/stop.sh index be0174e..4e6649c 100644 --- a/cyphernodeconf_docker/templates/installer/stop.sh +++ b/cyphernodeconf_docker/templates/installer/stop.sh @@ -27,6 +27,7 @@ stop_apps() { elif [ -f "$APP_SCRIPT_PATH/docker-compose.yaml" ]; then export SHARED_HTPASSWD_PATH export GATEKEEPER_DATAPATH + export GATEKEEPER_PORT export LIGHTNING_DATAPATH export BITCOIN_DATAPATH export APP_SCRIPT_PATH