Skip to main content
Always take a backup of the Postgres database before upgrading Libredesk.
Dump the database to a file with pg_dump. This works for both Docker and non-Docker setups, since Docker exposes Postgres on localhost:5432. Replace the user and database name (libredesk) if you changed them in your config.
pg_dump -h localhost -U libredesk libredesk > libredesk_backup.sql

Upgrade Methods

1

Stop Libredesk

Stop the running libredesk binary process.
2

Download latest release

Download the latest release and extract the libredesk binary to overwrite the previous version.
3

Upgrade database

./libredesk --upgrade
Upgrades are idempotent and running them multiple times have no side effects.
4

Start Libredesk

./libredesk