chore(docker): update environment variable prefixes to AMCS

This commit is contained in:
Hein
2026-03-26 16:26:15 +02:00
parent 8d0a91a961
commit 5d43228c2e
7 changed files with 38 additions and 30 deletions

View File

@@ -2,10 +2,10 @@
set -euo pipefail
DATABASE_URL="${DATABASE_URL:-${OB1_DATABASE_URL:-}}"
DATABASE_URL="${DATABASE_URL:-${AMCS_DATABASE_URL:-}}"
if [[ -z "${DATABASE_URL}" ]]; then
echo "DATABASE_URL or OB1_DATABASE_URL must be set" >&2
echo "DATABASE_URL or AMCS_DATABASE_URL must be set" >&2
exit 1
fi