docs: add update procedure section to all READMEs

Explains that db_data/ is preserved across container rebuilds and that
database migrations run automatically on startup.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-17 10:41:30 +02:00
parent 44c502dc50
commit cd1be8eaa5
3 changed files with 39 additions and 0 deletions
+13
View File
@@ -77,6 +77,19 @@ docker compose --env-file .env up --build -d
---
## 🔄 Updating
Data is stored in `./db_data/` (bind-mount), which is never touched by container rebuilds. Updating is safe:
```bash
git pull
docker compose up --build -d
```
Database migrations run automatically on startup — no manual steps required.
---
## ⚙️ Configuration
All configuration is via environment variables. See `.env.example` for the full list with descriptions.