Groups | Search | Server Info | Login | Register


Groups > comp.protocols.dns.bind > #16093

Official BIND 9 Docker images (Technology Preview)

Path csiph.com!newsfeed.xs4all.nl!newsfeed9.news.xs4all.nl!news.dns-netz.com!news.freedyn.net!nntp.terraraq.uk!nntp-feed.chiark.greenend.org.uk!ewrotcd!usenet-its.stanford.edu!usenet.stanford.edu!not-for-mail
From Ondřej Surý <ondrej@isc.org>
Newsgroups comp.protocols.dns.bind
Subject Official BIND 9 Docker images (Technology Preview)
Date Thu, 3 Sep 2020 12:32:13 +0200
Lines 87
Approved bind-users@lists.isc.org
Message-ID <mailman.870.1599129088.942.bind-users@lists.isc.org> (permalink)
References <E2A52A2A-5EAD-464E-A760-3E966E10E13C@isc.org>
NNTP-Posting-Host lists.isc.org
Mime-Version 1.0 (Mac OS X Mail 14.0 \(3654.0.3\))
Content-Type text/plain; charset=utf-8
Content-Transfer-Encoding quoted-printable
X-Trace usenet.stanford.edu 1599129140 8881 149.20.1.60 (3 Sep 2020 10:32:20 GMT)
X-Complaints-To action@cs.stanford.edu
To bind-users <bind-users@lists.isc.org>
Return-Path <ondrej@isc.org>
X-Original-To bind-users@lists.isc.org
Delivered-To bind-users@lists.isc.org
X-Mailer Apple Mail (2.3654.0.3)
X-BeenThere bind-users@lists.isc.org
X-Mailman-Version 2.1.29
Precedence list
List-Id BIND Users Mailing List <bind-users.lists.isc.org>
List-Unsubscribe <https://lists.isc.org/mailman/options/bind-users>, <mailto:bind-users-request@lists.isc.org?subject=unsubscribe>
List-Archive <https://lists.isc.org/pipermail/bind-users/>
List-Post <mailto:bind-users@lists.isc.org>
List-Help <mailto:bind-users-request@lists.isc.org?subject=help>
List-Subscribe <https://lists.isc.org/mailman/listinfo/bind-users>, <mailto:bind-users-request@lists.isc.org?subject=subscribe>
X-Mailman-Original-Message-ID <E2A52A2A-5EAD-464E-A760-3E966E10E13C@isc.org>
Xref csiph.com comp.protocols.dns.bind:16093

Show key headers only | View raw


Hello everyone,

ISC is proud to announce an official Docker images for BIND 9
versions 9.11 (Extended Support Version), 9.16 (Stable Version)
and 9.17 (Development Version).

Here’s the link to the official docker repository:
https://hub.docker.com/repository/docker/internetsystemsconsortium/bind9/general

The images are built on top of Ubuntu 20.04 LTS and BIND 9
packages from official ISC PPA (https://launchpad.net/~isc)
and will be updated every time there’s a new BIND 9 releases.

This is in the phase of technology preview, so I would invite
people to test the docker images and provide feedback (both
constructive praise and constructive critique are welcome).
The feedback could be sent here (the mailing list), or if you
think you found an issue to the official repository

Please be aware that while this is fairly simple, we would not
recommend running this in the production unless you are actually
accept that if you run into any problems you are on your own
and you will have to do any debugging on your own.

Here’s the quickstart:

# Recursive DNS Server

## BIND 9.11
docker run \
        --name=bind9 \
        --restart=always \
        --publish 53:53/udp \
        --publish 53:53/tcp \
        --publish 127.0.0.1:953:953/tcp \
        internetsystemsconsortium/bind9:9.11

# BIND 9.16
docker run \
        --name=bind9 \
        --restart=always \
        --publish 53:53/udp \
        --publish 53:53/tcp \
        --publish 127.0.0.1:953:953/tcp \
        internetsystemsconsortium/bind9:9.16

## Authoritative DNS Server

Here you will actually want to provide the desired
configuration in /etc/bind/named.conf and primary
zones, etc… (e.g. it’s not magic, you will have to
configure it).

# BIND 9.11
docker run \
        --name=bind9 \
        --restart=always \
        --publish 53:53/udp \
        --publish 53:53/tcp \
        --publish 127.0.0.1:953:953/tcp \
        --volume /etc/bind \
        --volume /var/cache/bind \
        --volume /var/lib/bind \
        --volume /var/log \
        internetsystemsconsortium/bind9:9.11

# BIND 9.16
docker run \
        --name=bind9 \
        --restart=always \
        --publish 53:53/udp \
        --publish 53:53/tcp \
        --publish 127.0.0.1:953:953/tcp \
        --volume /etc/bind \
        --volume /var/cache/bind \
        --volume /var/lib/bind \
        --volume /var/log \
        internetsystemsconsortium/bind9:9.16

Thanks for any feedback you might have,
Ondrej
--
Ondřej Surý (He/Him)
ondrej@isc.org

Back to comp.protocols.dns.bind | Previous | Next | Find similar


Thread

Official BIND 9 Docker images (Technology Preview) Ondřej Surý <ondrej@isc.org> - 2020-09-03 12:32 +0200

csiph-web