shlomiassaf / bind9

bind9 with Webmin GUI

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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)
EXTEND_LOGGING - true/false for extended logging (default: false) #when true there is a possibility to define logging {} in bind config

About

bind9 with Webmin GUI


Languages

Language:Perl 94.4%Language:Dockerfile 3.5%Language:Shell 2.1%