Sign inSign up

ekesken/bind

By ekesken

Updated about 11 years ago

bind with all configs as environment variables

Image
0

1.1K

ekesken/bind repository overview

Table of Contents

Introduction

This is a fork of sameersbn/docker-bind to allow all configs to be given as environment variables.

Installation

Pull the latest version of the image from the docker index. This is the recommended method of installation as it is easier to update image in the future. These builds are performed by the Docker Trusted Build service.

docker pull ekesken/bind:latest

Alternately you can build the image yourself.

git clone https://github.com/ekesken/docker-bind.git
cd docker-bind
docker build -t="$USER/bind" .

Quick Start

DOCKER_BIND=$(docker run -it \
  -e FORWARDERS="8.8.8.8;" \
  -e DNSSEC_VALIDATION=auto \
  -p 53:53/udp \
  ekesken/bind)

check if all is good with

docker logs $DOCKER_BIND

Upgrading

To upgrade to newer releases, simply follow this 3 step upgrade procedure.

  • Step 1: Update the docker image.
docker pull ekesken/bind:latest
  • Step 2: Stop the currently running image
docker stop bind
  • Step 3: Start the image
docker run -name bind -d [OPTIONS] ekesken/bind:latest

Tag summary

Content type

Image

Digest

sha256:b928250e3

Size

76.7 MB

Last updated

about 11 years ago

docker pull ekesken/bind