From 53e43508f3c50206b354387f2c4e56a00c8c0ec8 Mon Sep 17 00:00:00 2001 From: Nathan Date: Fri, 17 Apr 2026 15:51:33 -0400 Subject: [PATCH] fix: correct quoting in command for Docker registry configuration --- nodes/heimdall/docker_registry/compose.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nodes/heimdall/docker_registry/compose.yaml b/nodes/heimdall/docker_registry/compose.yaml index f6a91b3..5f19a67 100644 --- a/nodes/heimdall/docker_registry/compose.yaml +++ b/nodes/heimdall/docker_registry/compose.yaml @@ -13,7 +13,7 @@ services: - HT_CONTENTS=${REGISTRY_AUTH_HTPASSWD_CONTENTS} # Create the file on the fly before the registry starts command: > - sh -c "mkdir -p /auth && echo \"$$HT_CONTENTS\" > /auth/htpasswd && exec bin/registry serve /etc/docker/registry/config.yml" + sh -c "mkdir -p /auth && echo '$$HT_CONTENTS' > /auth/htpasswd && exec bin/registry serve /etc/docker/registry/config.yml" volumes: - /mnt/appdata/docker_registry/data:/var/lib/registry networks: