From ade342a5599b69548b5568aa971452835deefff5 Mon Sep 17 00:00:00 2001 From: Mauricio Siu Date: Wed, 21 Jan 2026 15:40:09 +0100 Subject: [PATCH] fix: update PostgreSQL user password command in security script - Removed output redirection from the PostgreSQL user password update command in the security migration script to ensure visibility of potential errors during execution. --- apps/website/public/security/0.26.6.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/website/public/security/0.26.6.sh b/apps/website/public/security/0.26.6.sh index b0eaed3..adc9a1d 100644 --- a/apps/website/public/security/0.26.6.sh +++ b/apps/website/public/security/0.26.6.sh @@ -76,7 +76,7 @@ POSTGRES_CONTAINER=$(docker ps --filter "name=dokploy-postgres" --format "{{.ID} if [ -n "$POSTGRES_CONTAINER" ]; then docker exec "$POSTGRES_CONTAINER" psql -U dokploy -d dokploy \ - -c "ALTER USER dokploy WITH PASSWORD '${NEW_PASSWORD}';" >/dev/null 2>&1 || true + -c "ALTER USER dokploy WITH PASSWORD '${NEW_PASSWORD}';" fi # Update Postgres service to use Docker Secret