Skip to main content
New users don’t need this guide. Run docker compose up and you’re ready.
The database was upgraded from PostgreSQL 15 to 18. This is a breaking change for existing local environments — the internal file format changed, so the old Docker volume is incompatible. If you see FATAL: database files are incompatible with server, follow the steps below.

Migration steps

1

Back up your data

While your v15 container is still running:
2

Remove the old volume

The internal file structure changed in v18. You must delete the old volume:
Make sure you have the dump from step 1 before proceeding.
3

Start the database

Pull the latest changes and start only the database:
4

Restore your data

Wait a few seconds for the database to initialize, then restore:
5

Start the application

Troubleshooting

You didn’t remove the old volume. Run:
This removes all data and starts fresh. If you need to preserve data, follow the full migration steps above.
The application started before the restore and created empty tables. Remove the volume and try again from step 2: