From 0f08aed718a0c7b2dd4b645f73ee9e9b274eea7c Mon Sep 17 00:00:00 2001 From: Tobias <96661824+CrazyWolf13@users.noreply.github.com> Date: Fri, 14 Nov 2025 14:11:47 +0100 Subject: [PATCH] fix schema init --- install/domain-locker-install.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/install/domain-locker-install.sh b/install/domain-locker-install.sh index bc8b9cc3d..729afb623 100644 --- a/install/domain-locker-install.sh +++ b/install/domain-locker-install.sh @@ -45,6 +45,9 @@ npm run build msg_info "Built Domain-Locker" msg_info "Building Database schema" +DOMAIN_LOCKER_DB_NAME=${PG_DB_NAME} +DOMAIN_LOCKER_DB_USER=${PG_DB_USER} +DOMAIN_LOCKER_DB_PASSWORD=${PG_DB_PASS} bash /opt/domain-locker/db/setup-postgres.sh msg_ok "Built Database schema"