Updating
Keep Comicarr up to date with the latest releases.
Backup before updating
Back up your /config directory before applying updates. This includes comicarr.db, config.ini, and the secure/ directory containing your encryption key.
Docker
Pull the latest image and recreate the container:
docker compose pull
docker compose up -dThe container restarts with the new image. Your data in /config persists across updates.
Update Notifications
Comicarr can check GitHub for new releases automatically.
| Setting | Description | Default |
|---|---|---|
CHECK_GITHUB | Enable automatic update checks | False |
CHECK_GITHUB_INTERVAL | Minutes between checks | 360 |
Enable in Settings > General or in config.ini:
[General]
CHECK_GITHUB = True
CHECK_GITHUB_INTERVAL = 360When a new version is available, Comicarr displays a notification in the UI.
Manual Installation
If you installed from source:
Pull the latest code
cd /path/to/comicarr
git pull origin mainRebuild the frontend
cd frontend
npm install
npm run build
cd ..