From d8a39035b2e80f12eb7da9bb85aac6d2354729e0 Mon Sep 17 00:00:00 2001 From: Tobias <96661824+CrazyWolf13@users.noreply.github.com> Date: Fri, 14 Nov 2025 22:33:27 +0100 Subject: [PATCH] fix pgpassword --- install/domain-locker-install.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/install/domain-locker-install.sh b/install/domain-locker-install.sh index a97bc1716..2e4869bef 100644 --- a/install/domain-locker-install.sh +++ b/install/domain-locker-install.sh @@ -45,6 +45,7 @@ npm run build msg_info "Built Domain-Locker" msg_info "Building Database schema" +export PGPASSWORD="$DL_PG_PASSWORD" psql -h "$DL_PG_HOST" -p "$DL_PG_PORT" -U "$DL_PG_USER" -d "$DL_PG_NAME" -f "/opt/domain-locker/db/schema.sql" msg_ok "Built Database schema"