forked from chriscrowe/docker-pihole-unbound
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add updated version of unbound according to chriscrowe#214
- Loading branch information
1 parent
ff993e1
commit 0e89005
Showing
2 changed files
with
4 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,13 @@ | ||
ARG PIHOLE_VERSION | ||
FROM pihole/pihole:${PIHOLE_VERSION:-latest} | ||
RUN apt update && apt install -y unbound | ||
RUN echo "deb http://deb.debian.org/debian bullseye-backports main" >> /etc/apt/sources.list | ||
RUN apt update && apt -t bullseye-backports install -y unbound | ||
|
||
COPY lighttpd-external.conf /etc/lighttpd/external.conf | ||
COPY unbound-pihole.conf /etc/unbound/unbound.conf.d/pi-hole.conf | ||
COPY 99-edns.conf /etc/dnsmasq.d/99-edns.conf | ||
RUN mkdir -p /etc/services.d/unbound | ||
COPY unbound-run /etc/services.d/unbound/run | ||
RUN chmod 774 /etc/services.d/unbound/run | ||
|
||
ENTRYPOINT ./s6-init |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters