details: https://code.tryton.org/tryton-docker/commit/6eaf1408c321
branch: default
user: Cédric Krier <[email protected]>
date: Tue Nov 04 13:01:29 2025 +0100
description:
Update mount point of PostgreSQL volume
Since version 18, the PostgreSQL image has modified the path of the data
volume.
Closes #24
diffstat:
compose.yml | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diffs (12 lines):
diff -r ad293fe74324 -r 6eaf1408c321 compose.yml
--- a/compose.yml Sat Jul 19 11:49:31 2025 +0200
+++ b/compose.yml Tue Nov 04 13:01:29 2025 +0100
@@ -38,7 +38,7 @@
- POSTGRES_PASSWORD=${DB_PASSWORD:-password}
- POSTGRES_DB=${DB_NAME:-tryton}
volumes:
- - "postgres-data:/var/lib/postgresql/data"
+ - "postgres-data:/var/lib/postgresql"
volumes:
postgres-data: