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.
43 lines
947 B
YAML
43 lines
947 B
YAML
name: Technitium DNS
|
|
version: 15.4.3
|
|
slug: technitium_dns
|
|
description: Technitium DNS Server add-on for Home Assistant
|
|
arch:
|
|
- amd64
|
|
- aarch64
|
|
- armv7
|
|
init: false
|
|
url: https://github.com/technitiumsoftware/dnsserver
|
|
webui: http://[HOST]:[PORT:5380]/
|
|
ports:
|
|
53/udp: 53
|
|
53/tcp: 53
|
|
853/tcp: 853
|
|
443/tcp: 443
|
|
443/udp: 443
|
|
5380/tcp: 5380
|
|
53443/tcp: 53443
|
|
ports_description:
|
|
53/udp: DNS service (UDP)
|
|
53/tcp: DNS service (TCP)
|
|
853/tcp: DNS-over-TLS (DoT)
|
|
443/tcp: DNS-over-HTTPS (DoH, HTTP/1.1 + HTTP/2)
|
|
443/udp: DNS-over-HTTPS (DoH, HTTP/3)
|
|
5380/tcp: Web console (HTTP)
|
|
53443/tcp: Web console (HTTPS)
|
|
map:
|
|
- addon_config:rw
|
|
- ssl
|
|
- homeassistant:ro
|
|
options:
|
|
admin_password: CHANGE_ME
|
|
timezone: UTC
|
|
enable_https: false
|
|
tls_cert_pfx_path: null
|
|
tls_cert_pfx_password: null
|
|
schema:
|
|
admin_password: password
|
|
timezone: str
|
|
enable_https: bool
|
|
tls_cert_pfx_path: str?
|
|
tls_cert_pfx_password: password? |