Improve Bind9 configuration

This commit is contained in:
2024-09-26 15:57:19 +02:00
parent e0b6f6bac8
commit 0e54866e46
3 changed files with 18 additions and 0 deletions

View File

@ -10,6 +10,16 @@ RUN apt-get update && \
traceroute \
&& rm -rf /var/lib/apt/lists/*
RUN sed 's/include "\/etc\/bind\/named.conf.default-zones";//g' /etc/bind/named.conf
RUN echo "include \"/etc/dns/master.conf\";" > /etc/bind/named.conf.local
COPY start.sh /start.sh
COPY restart-bind /usr/bin
RUN mkdir /etc/dns
RUN touch /etc/dns/master.conf
VOLUME /etc/dns
EXPOSE 53
CMD ["/bin/sh", "/start.sh"]