Updating

Check for updates

To check if a new version is available:

  1. Go to Settings in the left menu
  2. Find the Check for updates section showing your current version
  3. Click Check to see if updates are available

tirreno periodically releases updates with new features and security patches.

Before updating

  1. Backup your database before any update
  2. Check the changelog for breaking changes at github.com/tirrenotechnologies/tirreno/releases
  3. Test in staging if possible before updating production

Git

cd /path/to/tirreno
git fetch origin
git pull origin main

If you have local changes, stash them first:

git stash
git pull origin main
git stash pop

Composer

composer update tirreno/tirreno

Docker

docker pull tirreno/tirreno:latest
docker-compose down
docker-compose up -d

After updating

  1. Remove the installation folder: rm -rf /path/to/tirreno/install
  2. Clear any application cache if applicable
  3. Run database migrations if required (check release notes)
  4. Verify the application is working correctly
  5. Check the Logbook for any errors
________________________________________________________________________________