Files
da-HomeNetDocumentation/PI5/Konfiguration/docker/immich.md
T
2026-06-19 23:18:04 +02:00

40 lines
1.3 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 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)