Skip to content

Commit 5cf3193

Browse files
authored
Update PostgreSQL to version 18 (#10194)
Also, disable password-based authentication using the MD5 hash algorithm, since that functionality has been officially deprecated: https://www.postgresql.org/docs/18/auth-password.html Signed-off-by: Anton Kirilov <[email protected]>
1 parent e5ab1a1 commit 5cf3193

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

toolset/databases/postgres/postgres.dockerfile

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
FROM postgres:17-bookworm
1+
FROM postgres:18-trixie
22

33
ENV PGDATA=/ssd/postgresql \
44
POSTGRES_DB=hello_world \
5-
POSTGRES_HOST_AUTH_METHOD=md5 \
6-
POSTGRES_INITDB_ARGS=--auth-host=md5 \
75
POSTGRES_PASSWORD=benchmarkdbpass \
86
POSTGRES_USER=benchmarkdbuser
97

0 commit comments

Comments
 (0)