12 lines
180 B
Docker
12 lines
180 B
Docker
|
FROM debian:stable-slim
|
||
|
|
||
|
RUN apt update && apt -y install nsd && apt clean
|
||
|
|
||
|
RUN nsd-control-setup
|
||
|
|
||
|
RUN mkdir -p /etc/nsd/zones
|
||
|
|
||
|
COPY nsd.conf /etc/nsd/
|
||
|
|
||
|
CMD /usr/sbin/nsd -d -P ""
|