22 lines
483 B
Docker
22 lines
483 B
Docker
FROM ubuntu/bind9:9.18-22.04_beta
|
|
|
|
LABEL version="20240627.1.4"
|
|
LABEL description="bind9 secondary nameserver"
|
|
|
|
ENV BIND_LIB_DIR=/var/lib/bind
|
|
ENV BIND_ETC_DIR=/etc/bind
|
|
|
|
|
|
ARG DEBIAN_FRONTEND=noninteractive
|
|
RUN apt update && apt -y upgrade
|
|
|
|
COPY secondary/etc/bind/named.conf $BIND_ETC_DIR/named.conf
|
|
|
|
RUN mkdir -p /var/named/log
|
|
RUN chown -R bind:bind /var/named/log
|
|
RUN chown -R bind:bind $BIND_ETC_DIR
|
|
RUN chown -R bind:bind $BIND_LIB_DIR
|
|
RUN chown -R bind:bind /var/cache/bind
|
|
|
|
|