Updating
Check for updates
To check if a new version is available:
- Go to Settings in the left menu
- Find the Check for updates section showing your current version
- Click Check to see if updates are available
tirreno periodically releases updates with new features and security patches.
Before updating
- Backup your database before any update
- Check the changelog for breaking changes at github.com/tirrenotechnologies/tirreno/releases
- 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
- Remove the installation folder:
rm -rf /path/to/tirreno/install
- Clear any application cache if applicable
- Run database migrations if required (check release notes)
- Verify the application is working correctly
- Check the Logbook for any errors
________________________________________________________________________________