Skip to content

Commit ade342a

Browse files
committed
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.
1 parent e78c48b commit ade342a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/website/public/security/0.26.6.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ POSTGRES_CONTAINER=$(docker ps --filter "name=dokploy-postgres" --format "{{.ID}
7676

7777
if [ -n "$POSTGRES_CONTAINER" ]; then
7878
docker exec "$POSTGRES_CONTAINER" psql -U dokploy -d dokploy \
79-
-c "ALTER USER dokploy WITH PASSWORD '${NEW_PASSWORD}';" >/dev/null 2>&1 || true
79+
-c "ALTER USER dokploy WITH PASSWORD '${NEW_PASSWORD}';"
8080
fi
8181

8282
# Update Postgres service to use Docker Secret

0 commit comments

Comments
 (0)