From 26396476324d5d74b2db4ed64c228f584283cd29 Mon Sep 17 00:00:00 2001 From: Erich Blume Date: Mon, 16 Feb 2026 08:03:24 -0800 Subject: [PATCH] Switch navidrome to custom container image v1.0.2 The v1.0.1 image was built before the USER 65534 removal, causing SQLite write failures at runtime. v1.0.2 includes both the zlib-dev build fix and the non-root user removal. Co-Authored-By: Claude Opus 4.6 --- argocd/manifests/navidrome/deployment.yaml | 2 +- docs/changelog.d/fix-navidrome-container-v1.0.2.bugfix.md | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 docs/changelog.d/fix-navidrome-container-v1.0.2.bugfix.md diff --git a/argocd/manifests/navidrome/deployment.yaml b/argocd/manifests/navidrome/deployment.yaml index 978e69c..157fe91 100644 --- a/argocd/manifests/navidrome/deployment.yaml +++ b/argocd/manifests/navidrome/deployment.yaml @@ -16,7 +16,7 @@ spec: spec: containers: - name: navidrome - image: deluan/navidrome:0.60.3 + image: registry.ops.eblu.me/blumeops/navidrome:v1.0.2 ports: - containerPort: 4533 name: http diff --git a/docs/changelog.d/fix-navidrome-container-v1.0.2.bugfix.md b/docs/changelog.d/fix-navidrome-container-v1.0.2.bugfix.md new file mode 100644 index 0000000..077e4a9 --- /dev/null +++ b/docs/changelog.d/fix-navidrome-container-v1.0.2.bugfix.md @@ -0,0 +1 @@ +Fix navidrome custom container image (removed non-root user that prevented SQLite writes)