Initial commit
This commit is contained in:
commit
daf43a07ed
9
Dockerfile
Normal file
9
Dockerfile
Normal file
@ -0,0 +1,9 @@
|
||||
FROM alpine
|
||||
RUN apk add --no-cache bind
|
||||
RUN mkdir /var/cache/bind
|
||||
RUN chown nobody:nobody /var/cache/bind
|
||||
COPY entrypoint.sh /entrypoint.sh
|
||||
CMD /entrypoint.sh
|
||||
VOLUME ["/etc/bind"]
|
||||
EXPOSE 53/udp
|
||||
EXPOSE 53/tcp
|
1
entrypoint.sh
Executable file
1
entrypoint.sh
Executable file
@ -0,0 +1 @@
|
||||
/usr/sbin/named -u nobody -c /etc/bind/named.conf -g
|
Loading…
Reference in New Issue
Block a user