Trying to find a repo that has Technitium. Any and all help would be appreciated.
Hi,
Technitium DNS Server does have an official Docker image. The image you want is:
technitium/dns-server
For ZimaOS, I would install it as a Docker Compose app and keep the data under /DATA/AppData, for example:
services:
technitium:
image: technitium/dns-server:latest
container_name: technitium
restart: unless-stopped
ports:
- “5380:5380/tcp”
- “53:53/udp”
- “53:53/tcp”
volumes:
- /DATA/AppData/technitium/config:/etc/dns
Then open:
Before using port 53, make sure nothing else on the ZimaOS system is already using DNS port 53, otherwise the container may fail to start.
You can check with:
ss -tulpn | grep ‘:53’
If port 53 is already in use, post the output and we can help adjust the compose file safely.
2 Likes
Thanks for the help.