DNS WebUI is a modern web-based management interface for a BIND9 DNS server.
374
A full Bind9 DNS Manager with a secure WebUI, built inside a Ubuntu container.
git clone https://github.com/kvanonckelen/dns-webui.git
cd dns-webui
services:
dns-webui:
image: kevinvobw/dns-webui
container_name: dns-webui
ports:
- "53:53/udp"
- "53:53/tcp"
- "80:80"
- "443:443"
volumes:
- ./bind/etc:/etc/bind
- ./nginx/certs:/etc/nginx/certs
- ./nginx/nginx.conf:/etc/nginx/nginx.conf
restart: unless-stopped
Make sure you have created a volume where the nginx configuration files can be stored. If that is done, you can start the container.
docker compose up --build
Then visit:
http://localhost:8080 ➔ Redirects automatically to https://localhost
Default credentials:
Username: admin
Password: admin123
(Force password change required after first login)
Service | Port DNS (Bind9) | 53 TCP/UDP HTTP | 80 HTTPS | 443
To generate your own self-signed SSL certificates:
openssl req -x509 -newkey rsa:4096 -sha256 -days 365 -nodes \
-keyout nginx/certs/privkey.pem \
-out nginx/certs/fullchain.pem \
-subj "/CN=localhost"
Want to do more with it? please see my github repo.
MIT License
Copyright (c) 2025 kvanonckelen
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Content type
Image
Digest
sha256:44841dc98…
Size
406.7 MB
Last updated
over 1 year ago
docker pull kevinvobw/dns-webui