-
Notifications
You must be signed in to change notification settings - Fork 286
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
32 additions
and
9 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,10 +1,11 @@ | ||
FROM pihole/pihole:2022.02.1 | ||
FROM pihole/pihole:2022.04.2 | ||
RUN apt update && apt 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 | ||
COPY start_unbound_and_s6_init.sh start_unbound_and_s6_init.sh | ||
RUN mkdir /etc/services.d/unbound | ||
COPY unbound-run /etc/services.d/unbound/run | ||
|
||
ENTRYPOINT ./s6-init | ||
|
||
RUN chmod +x start_unbound_and_s6_init.sh | ||
ENTRYPOINT ./start_unbound_and_s6_init.sh |
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 +1 @@ | ||
2022.02.1 | ||
2022.04.2 |
This file was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#!/usr/bin/with-contenv bash | ||
|
||
s6-echo "Starting unbound" | ||
|
||
NAME="unbound" | ||
DESC="DNS server" | ||
DAEMON="/usr/sbin/unbound" | ||
PIDFILE="/run/unbound.pid" | ||
|
||
HELPER="/usr/lib/unbound/package-helper" | ||
|
||
test -x $DAEMON || exit 0 | ||
|
||
# Override this variable by editing or creating /etc/default/unbound. | ||
DAEMON_OPTS="" | ||
|
||
if [ -f /etc/default/unbound ]; then | ||
. /etc/default/unbound | ||
fi | ||
|
||
$HELPER chroot_setup | ||
$HELPER root_trust_anchor_update 2>&1 | logger -p daemon.info -t unbound-anchor | ||
|
||
$DAEMON -d $DAEMON_OPTS | ||
|