From 9e1513a904b3a779d39ed335caecfac53a5a1f1a Mon Sep 17 00:00:00 2001 From: mrwacka Date: Sun, 6 Sep 2026 15:54:56 +0200 Subject: [PATCH] Technicum steht --- compose/compose.yaml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 compose/compose.yaml diff --git a/compose/compose.yaml b/compose/compose.yaml new file mode 100644 index 0000000..291c082 --- /dev/null +++ b/compose/compose.yaml @@ -0,0 +1,21 @@ +services: + technitium: + image: technitium/dns-server:latest + container_name: technitium-dns + hostname: dns-int01 + restart: unless-stopped + ports: + - "53:53/udp" + - "53:53/tcp" + - "5380:5380/tcp" + volumes: + - /srv/dns-int01/data:/etc/dns + environment: + - TZ=Europe/Zurich + cap_add: + - NET_ADMIN + healthcheck: + test: ["CMD", "/opt/technitium/dns/run.sh", "health"] + interval: 30s + timeout: 10s + retries: 3 \ No newline at end of file