Skip to content

Unbound Docker image based on Alpine Linux

License

Notifications You must be signed in to change notification settings

yuta1024/unbound-docker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

41 Commits
 
 
 
 
 
 
 
 

Repository files navigation

unbound-docker

publish

Overview

Unbound Docker image based on Alpine Linux.

Usage

  • root.hints located in /etc/unbound/root.hints.
  • root.key located in /var/lib/unbound/root.key.
docker run -d -p 53:53/udp -v ${PWD}/unbound.conf:/etc/unbound/unbound.conf ghcr.io/yuta1024/unbound:<VERSION>

compose.yaml

services:
  unbound:
    image: ghcr.io/yuta1024/unbound:<VERSION>
    ports:
      - "53:53/udp"
    volumes:
      - ./unbound.conf:/etc/unbound/unbound.conf

Note

  • unbound-checkconf, unbound-control and unbound-control-setup are not included.