Inital commit

This commit is contained in:
2026-06-19 23:18:04 +02:00
commit 1bb79dc5a5
46 changed files with 3401 additions and 0 deletions
+39
View File
@@ -0,0 +1,39 @@
# Immich Foto-Management
**Zusammenfassung**: Immich dient als Google-Photos-Alternative mit automatischem Backup, Gesichtserkennung und ML-basierter Suche. Läuft intern (Traefik-Labels auskommentiert).
**Quellen**: `raw/Systemdaten Raspberry PI5.md`
**Zuletzt aktualisiert**: 2026-06-17
---
## Container
| Container | Image | Funktion |
|---|---|---|
| `immich_server` | `ghcr.io/immich-app/immich-server:v2` | Haupt-App (REST API + Web) |
| `immich_machine_learning` | `ghcr.io/immich-app/immich-machine-learning:v2` | ML-Suche, Gesichtserkennung |
| `immich_redis` | `valkey/valkey:8` | Cache/Warteschlange |
| `immich_postgres` | `ghcr.io/immich-app/postgres:14-vector` | Datenbank mit pgvector |
## Netzwerk
- `traefik` für Reverse Proxy (Labels derzeit auskommentiert)
- `internal` interne Kommunikation
## Daten-Persistenz
| Typ | Pfad |
|---|---|
| **Upload-Speicher** | via `${UPLOAD_LOCATION}` (im `.env` definiert) |
| **Datenbank** | via `${DB_DATA_LOCATION}` (im `.env` definiert) |
| **ML-Cache** | Docker-Volume `immich_model-cache` |
## Status
- **Traefik-Routing ist auskommentiert** Immich wird aktuell **nicht über den Reverse Proxy** erreicht, sondern nur intern via Port 2283.
- Die ML-Komponente läuft auf CPU (arm64-native).
## Verwandte Seiten
- [traefik](./traefik.md)
- [docker-services](../docker-services.md)