From be3f188432af6d3cd150028bbd47deb1251e8a21 Mon Sep 17 00:00:00 2001 From: Greg Hellings Date: Tue, 25 Nov 2025 23:52:47 -0600 Subject: [PATCH] Use home-built immich container Using the immich conatiner for locally cached immich-go binaries, rather than pulling the binary every time we run. --- manifests/immich/backup.yaml | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/manifests/immich/backup.yaml b/manifests/immich/backup.yaml index 7b93b91..1d6bbe0 100644 --- a/manifests/immich/backup.yaml +++ b/manifests/immich/backup.yaml @@ -37,19 +37,21 @@ spec: server: nas1.shire-zebra.ts.net containers: - name: immich-go - image: "nixos/nix:latest" + image: "registry.thehellings.com/greg/ci-images/immich:latest" imagePullPolicy: "Always" command: - - nix-shell - - "-p" - - immich-go - - "--run" + - /bin/sh + - "-c" - >- - immich-go archive - --write-to-folder /nas1 + immich-go + archive + "--write-to-folder" + /nas1 from-immich - --from-api-key "$IMMICH_API_KEY" - --from-server http://immich-server:2283 + "--from-api-key" + "$IMMICH_API_KEY" + "--from-server" + "http://immich-server:2283" volumeMounts: - name: nas1 mountPath: /nas1