app-Image: Registry-Pull mit Build-Fallback statt blindem Build

Das Frontend-Image liegt in der Gitea-Registry (karim/rapport-app:main),
also pullen wir es bevorzugt (schnell, kein npm-Build im Container) und
bauen nur aus Dockerfile.app, wenn die Registry nicht erreichbar ist.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
2026-05-30 13:38:03 +02:00
parent c17aab3d0a
commit 929c5ab600
2 changed files with 18 additions and 3 deletions
+2 -1
View File
@@ -26,7 +26,8 @@ Läuft auf der **Proxmox-VE-Host-Shell** und:
5. Generiert zufällige `POSTGRES_PASSWORD` + `JWT_SECRET` und daraus passende `ANON_KEY` / `SERVICE_ROLE_KEY`
6. Setzt `SITE_URL` / `API_EXTERNAL_URL` auf die LAN-IP des Containers
7. Holt die DB-Migrations (`sync-migrations.sh`)
8. Startet den Stack mit `docker compose up -d`
8. Holt das Frontend-Image aus der Gitea-Registry (`rapport-app:main`); falls die Registry nicht erreichbar ist, baut es als Fallback aus `Dockerfile.app`
9. Startet den Stack mit `docker compose up -d`
---