From d459931672c072b4dc6caef8323d9c6dad4b3902 Mon Sep 17 00:00:00 2001 From: Jozsef Gtta Date: Thu, 16 Jul 2026 14:06:49 +0000 Subject: [PATCH] Pin homarr to known-good digest after main-branch update caused slowness --- siklos/homarr/docker-compose.yml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/siklos/homarr/docker-compose.yml b/siklos/homarr/docker-compose.yml index a022fe6..51c4d6b 100644 --- a/siklos/homarr/docker-compose.yml +++ b/siklos/homarr/docker-compose.yml @@ -1,7 +1,7 @@ services: homarr: container_name: homarr - image: ghcr.io/homarr-labs/homarr:latest + image: ghcr.io/homarr-labs/homarr@sha256:5f34ec41f37915e78a75fe33ecfc5fb00404707b838aa8e50d6570564db66f8e restart: unless-stopped volumes: - /var/run/docker.sock:/var/run/docker.sock @@ -12,5 +12,18 @@ services: - TZ=America/Chicago - FORCE_HTTPS=false - APP_URL=https://homarr.jgitta.com + - AUTH_PROVIDER=oidc + - AUTH_PROVIDERS=credentials + - AUTH_OIDC_CLIENT_ID=N4IjZa85HQUitEMT57HFb2qKPzThQ0QdFkQJubYE + - AUTH_OIDC_CLIENT_SECRET=c69c12fdbc824166645215f2377b366b4931140667cd9a0b61e5dc63272e802f + - AUTH_OIDC_URI=https://auth.jgitta.com/application/o/homarr/ + - AUTH_OIDC_CLIENT_NAME=Authentik + - AUTH_OIDC_ADMIN_GROUP=authentik Admins ports: - '7575:7575' + labels: + - com.centurylinklabs.watchtower.enable=false + # Pinned to a known-good build (2026-07-15) after the Watchtower-pulled + # "latest"/main-branch build from 2026-07-11 caused severe board-editor + # slowness. "latest" tracks Homarr's unstable main branch, not a release + # line, so do not switch this back to :latest without testing first.