Unbound installation on Alpine.
Mount your Unbound configuration directory on /etc/unbound, and map 53/udp port.
Something like:
docker run --restart=always -p 53:53/udp -v <your_unbound_config_dir>:/etc/unbound laruen/unbound
Or with docker-compose:
version: '2'
services:
unbound:
image: laruen/unbound
ports:
- "53:53/udp"
restart: always
hostname: 'unbound'
volumes:
- <your_unbound_config_dir>:/etc/unbound
Content type
Image
Digest
Size
5.6 MB
Last updated
about 7 years ago
docker pull laruen/unbound