Skip to content

ekesken/docker-bind

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

97 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

bind made easy

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Shell 90.0%
  • Makefile 10.0%