From 3a2c1b50d326fb92a4867d1df309d6fa734bb249 Mon Sep 17 00:00:00 2001 From: SKP Date: Tue, 9 Jul 2019 17:35:35 +0200 Subject: [PATCH] export GATEKEEPER_PORT for cypher apps --- cyphernodeconf_docker/templates/installer/config.sh | 1 + cyphernodeconf_docker/templates/installer/start.sh | 1 + cyphernodeconf_docker/templates/installer/stop.sh | 1 + 3 files changed, 3 insertions(+) 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