mirror of
https://github.com/BetterCorp/BetterFrame.git
synced 2026-05-26 16:56:33 +00:00
fix(pg): mount at /var/lib/postgresql for PG 18+
PG 18 uses major-version-specific subdirs under /var/lib/postgresql. Old mount at /var/lib/postgresql/data breaks pg_upgrade compatibility. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
1421feb7b4
commit
e71189b874
2 changed files with 2 additions and 2 deletions
|
|
@ -95,7 +95,7 @@ services:
|
|||
- POSTGRES_PASSWORD=${BF_PG_PASSWORD:-betterframe}
|
||||
- POSTGRES_DB=${BF_PG_DB:-betterframe}
|
||||
volumes:
|
||||
- postgres-data:/var/lib/postgresql/data
|
||||
- postgres-data:/var/lib/postgresql
|
||||
expose:
|
||||
- "5432"
|
||||
healthcheck:
|
||||
|
|
|
|||
|
|
@ -113,7 +113,7 @@ services:
|
|||
- POSTGRES_USER=${BF_PG_USER:-betterframe}
|
||||
- POSTGRES_PASSWORD=${BF_PG_PASSWORD:-betterframe}
|
||||
volumes:
|
||||
- postgres-data:/var/lib/postgresql/data
|
||||
- postgres-data:/var/lib/postgresql
|
||||
expose:
|
||||
- "5432"
|
||||
healthcheck:
|
||||
|
|
|
|||
Loading…
Reference in a new issue