From c791135a5944d109e63851fa04b5622481ab85df Mon Sep 17 00:00:00 2001 From: Ken Schiano Date: Sat, 8 Aug 2026 07:35:47 -0400 Subject: [PATCH] fix: remove image key so HA builds from Dockerfile with entrypoint MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The image: key forced HA to pull upstream technitium/dns-server directly, bypassing the Dockerfile entirely — so the entrypoint.sh persistence fix was never applied. Removing it makes HA build the image locally. --- technitium_dns/config.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/technitium_dns/config.yaml b/technitium_dns/config.yaml index c0a88a5..c5fafcc 100644 --- a/technitium_dns/config.yaml +++ b/technitium_dns/config.yaml @@ -1,5 +1,5 @@ name: Technitium DNS -version: 15.4.0 +version: 15.4.3 slug: technitium_dns description: Technitium DNS Server add-on for Home Assistant arch: @@ -40,5 +40,4 @@ schema: timezone: str enable_https: bool tls_cert_pfx_path: str? - tls_cert_pfx_password: password? -image: technitium/dns-server \ No newline at end of file + tls_cert_pfx_password: password? \ No newline at end of file