From 781d12e1b35f61bd8a5534406b7a9b563d73f35a Mon Sep 17 00:00:00 2001 From: Era Dorta Date: Sun, 5 Jan 2025 17:50:11 +0100 Subject: [PATCH] Add welcome and help messages env variables --- docker-compose.yaml | 2 ++ docker/compose_up.sh | 2 ++ 2 files changed, 4 insertions(+) diff --git a/docker-compose.yaml b/docker-compose.yaml index abd87a3..d4f9eec 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -35,6 +35,8 @@ services: - SIGNALBLAST_PHONE_NUMBER=$SIGNALBLAST_PHONE_NUMBER - SIGNALBLAST_PASSWORD=$SIGNALBLAST_PASSWORD - SIGNALBLAST_HEALTHCHECK_RECEIVER=$SIGNALBLAST_HEALTHCHECK_RECEIVER + - SIGNALBLAST_WELCOME_MESSAGE=$SIGNALBLAST_WELCOME_MESSAGE + - SIGNALBLAST_INSTRUCTIONS_URL=$SIGNALBLAST_INSTRUCTIONS_URL depends_on: signal-cli-rest-api: condition: service_healthy diff --git a/docker/compose_up.sh b/docker/compose_up.sh index bcace0c..e5816cd 100644 --- a/docker/compose_up.sh +++ b/docker/compose_up.sh @@ -11,5 +11,7 @@ export DOCKER_TAG="${SIGNALBLAST_VERSION//+/-}" export SIGNALBLAST_PHONE_NUMBER="" export SIGNALBLAST_PASSWORD="" export SIGNALBLAST_HEALTHCHECK_RECEIVER="" +export SIGNALBLAST_WELCOME_MESSAGE="" +export SIGNALBLAST_INSTRUCTIONS_URL="" docker compose up