Update
Keeping Draftila up to date ensures you have the latest features and security patches.
Docker Compose
Pull the latest image and restart:
Shell
docker compose pull
docker compose up -dMigrations will run automatically on startup.
Backup Before Updating
Always back up your database before updating.
SQLite (Default)
Shell
docker compose cp app:/app/data/draftila.sqlite ./backup.sqlitePostgreSQL
Shell
docker compose exec db pg_dump -U draftila draftila > backup.sqlVersion Pinning
Instead of using
latest, you can pin to a specific version:YAML
services:
app:
image: draftila/draftila:0.4.4Changelog
Check the GitHub Releases page for the full changelog of each version.