/isc-bind9-dockerized

Repo contains a dockerized version of ISC BIND9 server and it's components.

Primary LanguageDockerfileMIT LicenseMIT

General

MIT License

The Berkeley Internet Name Domain (BIND 9) implements an Internet domain name server. BIND 9 is the most widely-used name server software on the Internet, and is supported by the Internet Software Consortium.

This container provides the dockerized Internet Name Domain (BIND 9) implements an Internet domain name server using ISC maintained packages to compensate lag behind official ISC releases for Debian 10 (Buster).

Details

Currently, the image supports the following CPU architectures:

  • x86_64 (amd64);
  • armhf (arm32v6);
  • arm7l (arm32v6);
  • aarch6 (arm64v8).

This means that the image can be used on regular PC's with Intel CPU as well as on single-board computers like Raspberry Pi with ARM CPU.

Usage

To run container you need to execute command listed below:

docker run -d --name isc-bind9-dns-server --net=host \
    -v /path/to/named.conf:/etc/bind/named.conf \
    -v /path/to/exemple.com.db:/etc/bind/exemple.com.db \
    serhiymakarenko/isc-bind9-dns-server:latest

Related