/bind9

bind9 with Webmin GUI

Primary LanguagePerl

Bind9

From alpine-linux dockerized bind9 with Webmin GUI

bind9
bind9-tools
bind9-dnssec
perl
webmin with bind module only (v1.979)

Build docker by

docker build -t IMAGE_NAME(:tag) .

Example compose file

bind:
    image: IMAGE_NAME:tag
    volumes:
      - "/LOCAL/PATH/TO/BIND/CONFIG:/etc/bind"
    restart: always
    environment:
      TZ: "Region/City"
    ports:
      - "53:53/udp"          #dns service
      - "10000:10000/tcp"    #webmin http

For simpler use, You can do:

    network_mode: host

instead "ports" directive

ENV's:

TZ - set Your timezone
GUI_USER - run with different user (default: admin)
GUI_PASSWORD - run with different password (default: difficult)
IPV6 - enable/disable ipv6 (default: disable)