From f0c6a3c19c269e53f381efe5f70a6326ff8a7ac3 Mon Sep 17 00:00:00 2001 From: Moritz Date: Tue, 10 Jun 2025 17:26:40 +0200 Subject: [PATCH] critical fix to run postgres database --- abra.sh | 2 +- entrypoint.sh.tmpl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/abra.sh b/abra.sh index 2bcd6ea..34dd633 100644 --- a/abra.sh +++ b/abra.sh @@ -1,2 +1,2 @@ -export ENTRYPOINT_CONF_VERSION=v12 +export ENTRYPOINT_CONF_VERSION=v13 export PG_BACKUP_VERSION=v1 diff --git a/entrypoint.sh.tmpl b/entrypoint.sh.tmpl index 74d608c..3269fa2 100644 --- a/entrypoint.sh.tmpl +++ b/entrypoint.sh.tmpl @@ -42,7 +42,7 @@ main() { main -if [ -n "${CMD_DB_PASSWORD_FILE:-""}" ] ; then +if [ -n "${CMD_DB_PASSWORD:-""}" ] ; then export CMD_DB_URL="${CMD_DB_TYPE}://$CMD_DB_USER:$CMD_DB_PASSWORD@$CMD_DB_HOST:5432/$CMD_DB_NAME" fi