1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-08-08 22:27:53 +02:00

add dnsmasq

This commit is contained in:
kev
2016-04-14 01:36:03 +08:00
parent 664b974c9e
commit 6dd7a7d80a
8 changed files with 32 additions and 0 deletions

18
dnsmasq/Dockerfile Normal file
View File

@@ -0,0 +1,18 @@
#
# Dockerfile for dnsmasq
#
FROM alpine
MAINTAINER kev <norelply@datageek.info>
RUN set -xe \
&& apk add -U dnsmasq \
&& echo "conf-dir=/etc/dnsmasq.d/,*.conf" >> /etc/dnsmasq.conf \
&& mkdir -p /etc/dnsmasq.d \
&& rm -rf /var/cache/apk/*
VOLUME /etc/dnsmasq.d
EXPOSE 53/tcp 53/udp 67/udp
ENTRYPOINT ["/usr/sbin/dnsmasq", "--user=dnsmasq", "--group=dnsmasq"]