Skip to content

Simple containerized BIND server running on Alpine Linux

Notifications You must be signed in to change notification settings

jcbiellikltd/docker-bind

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

BIND Container

Docker Pulls Docker Stars Docker Build Docker Build Status

BIND server running on Alpine Linux.

Configuration

See example directory for sample config file.

Quickstart

bind:
  image: joebiellik/bind

  volumes:
    # You must provide a config file
    - ./named.conf:/etc/bind/named.conf

    # Zone files
    - ./zones:/var/lib/bind

  ports:
    - "53:53/tcp"
    - "53:53/udp"