mirror of
https://github.com/pschiffe/docker-pdns.git
synced 2024-11-13 03:47:56 +01:00
26ad6bfbe2
Resolves #50
26 lines
426 B
Docker
26 lines
426 B
Docker
FROM alpine:3.13
|
|
|
|
RUN apk add --no-cache \
|
|
mariadb-client \
|
|
pdns \
|
|
pdns-backend-mysql \
|
|
pdns-doc \
|
|
py3-pip \
|
|
python3
|
|
|
|
RUN pip3 install --no-cache-dir envtpl
|
|
|
|
ENV VERSION=4.3 \
|
|
PDNS_guardian=yes \
|
|
PDNS_setuid=pdns \
|
|
PDNS_setgid=pdns \
|
|
PDNS_launch=gmysql
|
|
|
|
EXPOSE 53 53/udp
|
|
|
|
COPY pdns.conf.tpl /
|
|
COPY docker-entrypoint.sh /
|
|
|
|
ENTRYPOINT [ "/docker-entrypoint.sh" ]
|
|
|
|
CMD [ "/usr/sbin/pdns_server" ]
|