#immich — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #immich, aggregated by home.social.
-
-
-
📣 Recordando entradas publicadas: Utilizar Intel GPU para la transcodificación en Immich
https://elblogdelazaro.org/utilizar-intel-gpu-para-la-transcodificacion-en-immich/
#Docker #Immich #Programas -
📣 Recordando entradas publicadas: Utilizar Intel GPU para la transcodificación en Immich
https://elblogdelazaro.org/utilizar-intel-gpu-para-la-transcodificacion-en-immich/
#Docker #Immich #Programas -
Ja #immich aber nein!. ;)
Ich bin schon irgendwie bei dir. -
Ja #immich aber nein!. ;)
Ich bin schon irgendwie bei dir. -
Yesterday I realized that the Immich Machine Learning can happen on a remote system (yes, yes, it's obvious once you look at it), so now my gaming rig's AMD GPU is doing some heavy lifting on face recognition.
This'll be interesting.
-
Yesterday I realized that the Immich Machine Learning can happen on a remote system (yes, yes, it's obvious once you look at it), so now my gaming rig's AMD GPU is doing some heavy lifting on face recognition.
This'll be interesting.
-
I've cleaned up my Raspberry Pi selfhosting setup a bit. I'm using two, each in an Argon ONE V5 case with a 1TB NVME drive, running Raspberry Pi OS.
'one' is serving Nextcloud All-in-one, Immich and Vaultwarden via a Caddy reverse-proxy. All using Docker containers, Caddy as a custom build with my domain DNS provider added.
'two' is used as remote borg backup destination for 'one', and later a few monitoring tools.
All three sites are using a wildcard certificate for my domain, and I connect via WireGuard (on the router) when away from home.
Path of least resistance:
I've tried Podman, AlmaLinux, and running a manual install of Nextcloud on Ubuntu. This setup follows recommended installations methods, and gives me fewer things to worry about.
#selfhosting #raspberrypi #nextcloud #immich #vaultwarden #caddy #wireguard
-
I've cleaned up my Raspberry Pi selfhosting setup a bit. I'm using two, each in an Argon ONE V5 case with a 1TB NVME drive, running Raspberry Pi OS.
'one' is serving Nextcloud All-in-one, Immich and Vaultwarden via a Caddy reverse-proxy. All using Docker containers, Caddy as a custom build with my domain DNS provider added.
'two' is used as remote borg backup destination for 'one', and later a few monitoring tools.
All three sites are using a wildcard certificate for my domain, and I connect via WireGuard (on the router) when away from home.
Path of least resistance:
I've tried Podman, AlmaLinux, and running a manual install of Nextcloud on Ubuntu. This setup follows recommended installations methods, and gives me fewer things to worry about.
#selfhosting #raspberrypi #nextcloud #immich #vaultwarden #caddy #wireguard
-
Anyone else getting plain "Error" messages when trying to upload images from Android to immich?
Just says 'Error" when long-pressing an image and selecting "Upload". Nothing else. -
Anyone else getting plain "Error" messages when trying to upload images from Android to immich?
Just says 'Error" when long-pressing an image and selecting "Upload". Nothing else. -
Tak, #immich zaktualizován z 3.0.1 na 3.0.2, vydání nové verze očekávám rozhodně ještě během dneška 😁
-
Tak, #immich zaktualizován z 3.0.1 na 3.0.2, vydání nové verze očekávám rozhodně ještě během dneška 😁
-
Hier ist mein Plan -- pragmatisch, so einfach wie moeglich:
DER PLAN: IMMICH 2.7.5 -> 3.0.2
================================
Gute Nachrichten zuerst:
- DB ist nur 744 MB -> dump/restore in 2-3 Minuten
- Upload-Data (247 GB) bleibt unangetastet, nur der Mount-Pfad aendert sich
- Library ist quasi leer (4 KB), kann ignoriert werden
- Redis-Data (1.4 MB) kann weggeworfen werden, Valkey startet frisch
- CPU: AMD EPYC-Milan -> x86-64-v2 kein Problem
- Nginx proxy_pass auf Port 5000 -> wir behalten 5000:2283 Mapping, dann muss Nginx nicht angefasst werden
SCHRITT 1: Backup (5 Min)
- pg_dumpall der aktuellen DB
- postgres Datenverzeichnis kopieren (744 MB, sekunden)
- Compose-File + env sichern
SCHRITT 2: Alles stoppen
docker compose down
SCHRITT 3: Neue .env + neues Compose schreiben
- .env mit UPLOAD_LOCATION, DB_DATA_LOCATION, DB_PASSWORD, IMMICH_VERSION=v3.0.2
- Compose basiert auf offiziellem v3.0.2 Template
- Anpassungen:
* Port: 5000:2283 (Nginx bleibt unangetastet)
* DB-Image: ghcr.io/immich-app/postgres:14-vectorchord0.4.3-pgvectors0.2.0 (offiziell)
* Upload-Mount: /mnt/immich-data/upload:/data
* Neuer DB-Daten-Pfad: /mnt/immich-data/postgres-v3 (frisch, PG14)
* Valkey 9 statt Redis 6.2
* Kein immich-microservices Container mehr
* Container-Namen: immich_server, immich_postgres, immich_redis, immich_machine_learning
SCHRITT 4: DB restore (2-3 Min)
- Nur den database Container starten
- pg_restore einspielen
- VectorChord-Extension installieren
SCHRITT 5: v3 starten
- docker compose up -d
- Logs beobachten (immich-server macht auto-migration: vector -> vectorchord)
- shared_preload_libraries Problem im Auge behalten (vchord.so + vectors.so)
SCHRITT 6: Smoke Test
- https://fotos.premium-web.ai -> HTTP 200
- Anmelden, Bilder laden, Upload testen
- DB-Extension check: vchord sollte aktiv sein
SCHRITT 7: Aufraeumen
- Alte Container-Images entfernen
- Altes postgres Datenverzeichnis behalten als Backup (744 MB)
DAS EINZIGE WIRKLICHE RISIKO
============================
Die Vector-Extension-Migration (pgvector -> vectorchord). Der v3 Server macht
das automatisch beim Start, aber wenn shared_preload_libraries nicht korrekt
gesetzt ist, startet die DB nicht. Das ist das bekannte Problem aus GitHub
Discussion #29577. Loesung: im database-Container den command mit
-c shared_preload_libraries=vchord.so,vectors.so setzen falls es fehlschlaegt.
ROLLBACK
========
Falls Schritt 5 fehlschlaegt:
- docker compose down
- Altes Compose + env zurueckspielen
- Altes postgres Datenverzeichnis (PG15) ist noch da
- docker compose up -d -> zurueck auf 2.7.5 -
Hier ist mein Plan -- pragmatisch, so einfach wie moeglich:
DER PLAN: IMMICH 2.7.5 -> 3.0.2
================================
Gute Nachrichten zuerst:
- DB ist nur 744 MB -> dump/restore in 2-3 Minuten
- Upload-Data (247 GB) bleibt unangetastet, nur der Mount-Pfad aendert sich
- Library ist quasi leer (4 KB), kann ignoriert werden
- Redis-Data (1.4 MB) kann weggeworfen werden, Valkey startet frisch
- CPU: AMD EPYC-Milan -> x86-64-v2 kein Problem
- Nginx proxy_pass auf Port 5000 -> wir behalten 5000:2283 Mapping, dann muss Nginx nicht angefasst werden
SCHRITT 1: Backup (5 Min)
- pg_dumpall der aktuellen DB
- postgres Datenverzeichnis kopieren (744 MB, sekunden)
- Compose-File + env sichern
SCHRITT 2: Alles stoppen
docker compose down
SCHRITT 3: Neue .env + neues Compose schreiben
- .env mit UPLOAD_LOCATION, DB_DATA_LOCATION, DB_PASSWORD, IMMICH_VERSION=v3.0.2
- Compose basiert auf offiziellem v3.0.2 Template
- Anpassungen:
* Port: 5000:2283 (Nginx bleibt unangetastet)
* DB-Image: ghcr.io/immich-app/postgres:14-vectorchord0.4.3-pgvectors0.2.0 (offiziell)
* Upload-Mount: /mnt/immich-data/upload:/data
* Neuer DB-Daten-Pfad: /mnt/immich-data/postgres-v3 (frisch, PG14)
* Valkey 9 statt Redis 6.2
* Kein immich-microservices Container mehr
* Container-Namen: immich_server, immich_postgres, immich_redis, immich_machine_learning
SCHRITT 4: DB restore (2-3 Min)
- Nur den database Container starten
- pg_restore einspielen
- VectorChord-Extension installieren
SCHRITT 5: v3 starten
- docker compose up -d
- Logs beobachten (immich-server macht auto-migration: vector -> vectorchord)
- shared_preload_libraries Problem im Auge behalten (vchord.so + vectors.so)
SCHRITT 6: Smoke Test
- https://fotos.premium-web.ai -> HTTP 200
- Anmelden, Bilder laden, Upload testen
- DB-Extension check: vchord sollte aktiv sein
SCHRITT 7: Aufraeumen
- Alte Container-Images entfernen
- Altes postgres Datenverzeichnis behalten als Backup (744 MB)
DAS EINZIGE WIRKLICHE RISIKO
============================
Die Vector-Extension-Migration (pgvector -> vectorchord). Der v3 Server macht
das automatisch beim Start, aber wenn shared_preload_libraries nicht korrekt
gesetzt ist, startet die DB nicht. Das ist das bekannte Problem aus GitHub
Discussion #29577. Loesung: im database-Container den command mit
-c shared_preload_libraries=vchord.so,vectors.so setzen falls es fehlschlaegt.
ROLLBACK
========
Falls Schritt 5 fehlschlaegt:
- docker compose down
- Altes Compose + env zurueckspielen
- Altes postgres Datenverzeichnis (PG15) ist noch da
- docker compose up -d -> zurueck auf 2.7.5 -
Updates am morgen ☕☀️ - das lohnt sich richtig
- Forgejo: 15.0.3 → 15.0.4 (Patch) ⚠️
- Immich: 2.7.5 → 3.0.2 (Major) ⚠️
- Syncthing: 2.1.1 → 2.1.2 (Patch) ⚠️#immich #syncthing #forgejo #selfhosted #vibeops #linux #hermes #glm52
-
Updates am morgen ☕☀️ - das lohnt sich richtig
- Forgejo: 15.0.3 → 15.0.4 (Patch) ⚠️
- Immich: 2.7.5 → 3.0.2 (Major) ⚠️
- Syncthing: 2.1.1 → 2.1.2 (Patch) ⚠️#immich #syncthing #forgejo #selfhosted #vibeops #linux #hermes #glm52
-
📣 Recordando entradas publicadas: Configurando túneles de Cloudflare e Immich para utilizar OAuth
https://elblogdelazaro.org/configurando-tuneles-de-cloudflare-e-immich-para-utilizar-oauth/
#Selfhosted #Docker #Immich #Programas #Cloudflare -
📣 Recordando entradas publicadas: Configurando túneles de Cloudflare e Immich para utilizar OAuth
https://elblogdelazaro.org/configurando-tuneles-de-cloudflare-e-immich-para-utilizar-oauth/
#Selfhosted #Docker #Immich #Programas #Cloudflare -
📣 Recordando entradas publicadas: Utilizar Intel GPU para la transcodificación en Immich
https://elblogdelazaro.org/utilizar-intel-gpu-para-la-transcodificacion-en-immich/
#Docker #Immich #Programas -
📣 Recordando entradas publicadas: Utilizar Intel GPU para la transcodificación en Immich
https://elblogdelazaro.org/utilizar-intel-gpu-para-la-transcodificacion-en-immich/
#Docker #Immich #Programas -
-
-
And today I installed #immich and downloaded my Google Photos via takeout.
-
And today I installed #immich and downloaded my Google Photos via takeout.
-
Your Subscriptions, Replaced
Your Subscriptions, Replaced — Audiobookshelf, Immich, Jellyfin, Navidrome, Nextcloud. Every one replaces a paid app you're subscribed to, for $0. Free + open-source. Save this.
Directory: https://selfhost.directory
#SelfHosted #OpenSource #Privacy #HomeLab #FOSS #Linux #DeGoogle #HomeServer #Audiobookshelf #Immich #Jellyfin #Navidrome #Nextcloud
-
Your Subscriptions, Replaced
Your Subscriptions, Replaced — Audiobookshelf, Immich, Jellyfin, Navidrome, Nextcloud. Every one replaces a paid app you're subscribed to, for $0. Free + open-source. Save this.
Directory: https://selfhost.directory
#SelfHosted #OpenSource #Privacy #HomeLab #FOSS #Linux #DeGoogle #HomeServer #Audiobookshelf #Immich #Jellyfin #Navidrome #Nextcloud
-
Self-Host Weekly (10 July 2026)
Online reactions to #AI, software updates and launches, a spotlight on #TypeType - a privacy stack for #YouTube, and more in this week's #selfhosted recap!
https://selfh.st/weekly/2026-07-10/
#selfhost #selfhosting #opensource #foss #homelab #devops #sysadmin #privacy #newsletter #fediverse #homeassistant #smarthome #immich #photos #feed #app #apps #lemmy #hackernews
-
Self-Host Weekly (10 July 2026)
Online reactions to #AI, software updates and launches, a spotlight on #TypeType - a privacy stack for #YouTube, and more in this week's #selfhosted recap!
https://selfh.st/weekly/2026-07-10/
#selfhost #selfhosting #opensource #foss #homelab #devops #sysadmin #privacy #newsletter #fediverse #homeassistant #smarthome #immich #photos #feed #app #apps #lemmy #hackernews
-
Da Memories als App in der Nextcloud zwar super ist, es aber immer wieder an was hakt probier ich aktuell #Immich aus um meine Fotos vom Handy zu sichern.
-
Da Memories als App in der Nextcloud zwar super ist, es aber immer wieder an was hakt probier ich aktuell #Immich aus um meine Fotos vom Handy zu sichern.
-
@schenklklopfer hab mich inzwischen mal über die genannten alternativen schlau gemacht. Kann erkennen, warum man den fork und seine features haben wollen würde, aber für mich zumindest ist das nix was ich brauche, daher bleib ich bei #immich. Und ich hoffe, dass der fork möglichst endlos supported und gepflegt wird, immich keine breaking changes einbaut oder dass zumindest das Versprechen hält, dass man jederzeit auch in Zukunft wieder zu immich zurück switchen kann!
-
@schenklklopfer hab mich inzwischen mal über die genannten alternativen schlau gemacht. Kann erkennen, warum man den fork und seine features haben wollen würde, aber für mich zumindest ist das nix was ich brauche, daher bleib ich bei #immich. Und ich hoffe, dass der fork möglichst endlos supported und gepflegt wird, immich keine breaking changes einbaut oder dass zumindest das Versprechen hält, dass man jederzeit auch in Zukunft wieder zu immich zurück switchen kann!
-
Free apps you'll wish you knew sooner
A rapid-fire list of free, open-source apps that replace what you pay for. Save it before you forget.
Directory: https://selfhost.directory
#SelfHosted #OpenSource #Privacy #HomeLab #FOSS #Linux #DeGoogle #HomeServer #Immich #Nextcloud #Jellyfin
-
Free apps you'll wish you knew sooner
A rapid-fire list of free, open-source apps that replace what you pay for. Save it before you forget.
Directory: https://selfhost.directory
#SelfHosted #OpenSource #Privacy #HomeLab #FOSS #Linux #DeGoogle #HomeServer #Immich #Nextcloud #Jellyfin
-
📣 Recordando entradas publicadas: Configurando túneles de Cloudflare e Immich para utilizar OAuth
https://elblogdelazaro.org/configurando-tuneles-de-cloudflare-e-immich-para-utilizar-oauth/
#Immich #Docker #Cloudflare #Selfhosted #Programas -
📣 Recordando entradas publicadas: Configurando túneles de Cloudflare e Immich para utilizar OAuth
https://elblogdelazaro.org/configurando-tuneles-de-cloudflare-e-immich-para-utilizar-oauth/
#Immich #Docker #Cloudflare #Selfhosted #Programas -
Self-host your digital life — day 1
Immich, Jellyfin, Navidrome and 2,600+ more — free, open-source, self-hosted. Full tour + directory below.
Directory: https://selfhost.directory
#SelfHosted #OpenSource #Privacy #HomeLab #FOSS #Linux #DeGoogle #HomeServer #Immich #Jellyfin #Navidrome
-
Self-host your digital life — day 1
Immich, Jellyfin, Navidrome and 2,600+ more — free, open-source, self-hosted. Full tour + directory below.
Directory: https://selfhost.directory
#SelfHosted #OpenSource #Privacy #HomeLab #FOSS #Linux #DeGoogle #HomeServer #Immich #Jellyfin #Navidrome
-
everything is a subscription
Immich for Google Photos, Jellyfin for Netflix, Navidrome for Spotify. All free, all open-source, all yours. 2,600+ more in one directory.
Directory: https://selfhost.directory
#SelfHosted #OpenSource #Privacy #HomeLab #FOSS #Linux #DeGoogle #HomeServer #Immich #Jellyfin #Navidrome
-
everything is a subscription
Immich for Google Photos, Jellyfin for Netflix, Navidrome for Spotify. All free, all open-source, all yours. 2,600+ more in one directory.
Directory: https://selfhost.directory
#SelfHosted #OpenSource #Privacy #HomeLab #FOSS #Linux #DeGoogle #HomeServer #Immich #Jellyfin #Navidrome