Files
Hassio_Addons/technitium_dns/config.yaml
Ken Schiano 69fa61bfd3 fix: persist config across restarts
- root cause: Technitium image ships /etc/dns as a real directory, so the
  build-time 'ln -sf /data/dns /etc/dns' created the symlink INSIDE it
  (/etc/dns/dns) instead of replacing it. Technitium kept writing to the
  ephemeral container directory and lost everything on restart.
- fix: add entrypoint.sh that runs at container start (after HA mounts
  volumes), removes the real /etc/dns dir, and symlinks it to /config/dns
  (the persistent addon_config mount). Seeds defaults on first run only.
- bump version to 15.4.2
2026-08-08 07:30:06 -04:00

44 lines
976 B
YAML

name: Technitium DNS
version: 15.4.2
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?
image: technitium/dns-server