You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The docker compose file uses the latest postgres version (v16) for the database server but the Dockerfile uses stable debian version with their current postgres-client package (v15). The backup with pg_dump fails with a version mismatch.
I fixed that in my Dockerfile by using these commands in RUN:
The docker compose file uses the latest postgres version (v16) for the database server but the Dockerfile uses stable debian version with their current postgres-client package (v15). The backup with pg_dump fails with a version mismatch.
I fixed that in my Dockerfile by using these commands in RUN:
And in the docker compose file i set the postgres server image to a fixed version:
image: postgres:16
The text was updated successfully, but these errors were encountered: