1
0
Fork 0
mirror of https://github.com/sujiba/pihole-unbound-hyperlocal.git synced 2025-07-13 23:05:44 +02:00

V.2022.02.1

This commit is contained in:
simon 2022-02-21 23:47:24 +01:00
parent 51a062d276
commit abf4a02384
3 changed files with 8 additions and 17 deletions

View file

@ -1,5 +1,5 @@
# Get the latest Pi-hole version
FROM pihole/pihole:2022.01.1
FROM pihole/pihole:2022.02.1
# Install necessary programs
RUN apt-get update && \
@ -14,8 +14,8 @@ COPY unbound-v1.9_pihole.conf /etc/unbound/unbound.conf.d/pihole.conf
# Download the DNS-Root-Zone. Change owner and move it to the right directory
RUN wget -O root.hints https://www.internic.net/domain/named.root && \
chown unbound:unbound root.hints && \
mv root.hints /var/lib/unbound/
mv root.hints /var/lib/unbound/ && \
chown unbound:unbound /var/lib/unbound/root.hints
# Unbound startup script
COPY start_unbound_and_s6_init.sh start_unbound_and_s6_init.sh