14 lines
284 B
YAML
14 lines
284 B
YAML
|
services:
|
||
|
nsd:
|
||
|
build: .
|
||
|
image: nsd:latest
|
||
|
container_name: ns1netignet_nsd
|
||
|
hostname: ns1netignet
|
||
|
volumes:
|
||
|
- ./conf/zones:/etc/nsd/zones
|
||
|
- ./conf/nsd.conf.d:/etc/nsd/nsd.conf.d
|
||
|
ports:
|
||
|
- "53:53"
|
||
|
- "53:53/udp"
|
||
|
restart: unless-stopped
|