From 25bf1596484770df1683dd65504e94e3b49296e2 Mon Sep 17 00:00:00 2001 From: Daniel Cosme Date: Tue, 5 May 2026 12:28:04 -0400 Subject: [PATCH] Fix immich image name --- apps/hydra/immich/immich-deployment.yaml | 2 +- pkg/root/services.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/hydra/immich/immich-deployment.yaml b/apps/hydra/immich/immich-deployment.yaml index b50c3f9..d91cb18 100644 --- a/apps/hydra/immich/immich-deployment.yaml +++ b/apps/hydra/immich/immich-deployment.yaml @@ -42,7 +42,7 @@ spec: secretKeyRef: key: db_username name: immich-secret - image: ghcr.io/immich-app/immich-server:v2.6.0:-release + image: ghcr.io/immich-app/immich-server:v2.6.0-release name: immich-server ports: - containerPort: 2283 diff --git a/pkg/root/services.go b/pkg/root/services.go index d67c6bc..180b942 100644 --- a/pkg/root/services.go +++ b/pkg/root/services.go @@ -35,7 +35,7 @@ var Linkding = Service{ var Immich = Service{ Name: "immich", - Image: "ghcr.io/immich-app/immich-server:v2.6.0:-release", + Image: "ghcr.io/immich-app/immich-server:v2.6.0-release", Port: 2283, // Server Port // PublicURL: "https://photos.danicos.me", }