mirror of
https://github.com/pschiffe/docker-pdns.git
synced 2024-11-13 03:47:56 +01:00
24 lines
400 B
Docker
24 lines
400 B
Docker
FROM alpine:3.8
|
|
MAINTAINER "Peter Schiffer" <peter@rfv.sk>
|
|
|
|
RUN apk add --no-cache \
|
|
pdns \
|
|
pdns-backend-mysql \
|
|
pdns-doc \
|
|
python3 \
|
|
mariadb-client
|
|
|
|
RUN pip3 install --no-cache-dir envtpl
|
|
|
|
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" ]
|