Move hard-coded env values into default-environment.env

This commit is contained in:
beatz174-bit
2026-04-07 15:08:59 +10:00
parent 7f70bd2acb
commit 634abe4b39
11 changed files with 151 additions and 70 deletions
+2 -2
View File
@@ -4,8 +4,8 @@ set -euo pipefail
#: "${GOTIFY_URL:?Set GOTIFY_URL (e.g. https://gotify.lan.ddnsgeek.com)}"
#: "${GOTIFY_TOKEN:?Set GOTIFY_TOKEN (AAM..CtNmUGoNIV)}"
GOTIFY_URL="https://gotify.lan.ddnsgeek.com"
GOTIFY_TOKEN="ADuOnDBG7C27hcf"
GOTIFY_URL="${GOTIFY_URL}"
GOTIFY_TOKEN="${GOTIFY_TOKEN}"
STATE_DIR="./docker-health-alert"
STATE_FILE="${STATE_DIR}/last_unhealthy.txt"