Merge pull request #486 from databasus/develop

FIX (docker): Chown /var/run/postgresql after UID/GID adjustment to f…
This commit is contained in:
Rostislav Dugin
2026-03-31 14:25:15 +03:00
committed by GitHub

View File

@@ -312,6 +312,8 @@ if [ "\$CURRENT_UID" != "\$PUID" ]; then
usermod -o -u "\$PUID" postgres
fi
chown -R postgres:postgres /var/run/postgresql
# PostgreSQL 17 binary paths
PG_BIN="/usr/lib/postgresql/17/bin"