915 B
915 B
Bump Postgres Version to 17
I will upgrade the Postgres version from 15-alpine to 17-alpine in docker-compose.yml.
Changes
- File:
docker-compose.yml - Action: Update
image: postgres:15-alpinetoimage: postgres:17-alpinefor both thedb(Tenant DB) andcontrol_db(Control Plane DB) services.
Important Note on Data
- Volume Incompatibility: Postgres data directories are version-specific. Upgrading the major version (15 -> 17) means the existing data in
madbase_db_dataandmadbase_control_db_datavolumes will not be compatible. - Resolution: You will likely need to delete the existing volumes (
docker-compose down -v) and let them be recreated, or perform a manual dump/restore if you have critical data.
Execution Steps
- Update
docker-compose.yml: Change the image tag. - Verify: I will check the file content after the update.