mirror of
https://github.com/pschiffe/docker-pdns.git
synced 2024-11-13 03:47:56 +01:00
25 lines
417 B
Docker
25 lines
417 B
Docker
FROM alpine:3.8
|
|
MAINTAINER "Peter Schiffer" <pschiffe@redhat.com>
|
|
|
|
RUN apk add --no-cache \
|
|
pdns \
|
|
pdns-backend-mysql \
|
|
pdns-doc \
|
|
python3 \
|
|
mariadb-client
|
|
|
|
RUN pip3 install envtpl \
|
|
&& rm -rf ~/.cache/*
|
|
|
|
ENV VERSION=4.1 \
|
|
PDNS_guardian=yes \
|
|
PDNS_setuid=pdns \
|
|
PDNS_setgid=pdns \
|
|
PDNS_launch=gmysql
|
|
|
|
EXPOSE 53 53/udp
|
|
|
|
COPY pdns.conf.tpl /
|
|
COPY docker-cmd.sh /
|
|
|
|
CMD [ "/docker-cmd.sh" ]
|