From 1ef9726314c59b1da77f9f8685429dba267d6af9 Mon Sep 17 00:00:00 2001 From: Nathan Date: Fri, 17 Apr 2026 16:01:21 -0400 Subject: [PATCH] fix: decode htpasswd contents before writing to file in Docker registry configuration --- nodes/heimdall/docker_registry/compose.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/nodes/heimdall/docker_registry/compose.yaml b/nodes/heimdall/docker_registry/compose.yaml index 0acc0cf..a925b36 100644 --- a/nodes/heimdall/docker_registry/compose.yaml +++ b/nodes/heimdall/docker_registry/compose.yaml @@ -17,9 +17,8 @@ services: - -c - | mkdir -p /auth - echo '${HT_CONTENTS}' > /auth/htpasswd + echo "${HT_CONTENTS}" | base64 -d > /auth/htpasswd exec bin/registry serve /etc/docker/registry/config.yml - - /mnt/appdata/docker_registry/data:/var/lib/registry networks: - proxy-net labels: