Updates
How to update Aetheris to the latest version.
Docker deployments
cd aetheris-app
git pull origin main
docker compose up -d --buildMigrations run automatically on container start.
Manual (systemd)
cd /opt/aetheris-app
git pull origin main
npm ci
npx prisma migrate deploy
npm run build
sudo systemctl restart aetheris-web aetheris-worker aetheris-backendCheck for updates
The Admin → Status page shows the latest GitHub release and whether an update is available. The backend caches the release check to avoid rate limits.
Rollback
git log --oneline -10 # find the last good commit
git checkout <commit> # pin to that version
docker compose up -d --build
# or: npm run build && sudo systemctl restart aetheris-webSee also: Upgrades, Installation.