From db9ffe31058c87ba432840edc52f278194ee9b50 Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Thu, 5 Jun 2025 22:04:04 +0200 Subject: [PATCH] update Zitadel PSQL (#5000) --- install/zitadel-install.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/install/zitadel-install.sh b/install/zitadel-install.sh index 9fe6edd6f..a97c68f86 100644 --- a/install/zitadel-install.sh +++ b/install/zitadel-install.sh @@ -17,8 +17,9 @@ msg_info "Installing Dependencies (Patience)" $STD apt-get install -y ca-certificates msg_ok "Installed Dependecies" +PG_VERSION="17" PG_MODULES="common" install_postgresql + msg_info "Installing Postgresql" -$STD apt-get install -y postgresql postgresql-common DB_NAME="zitadel" DB_USER="zitadel" DB_PASS=$(openssl rand -base64 18 | tr -dc 'a-zA-Z0-9' | cut -c1-13)