2022-09-15 08:22:37 +02:00
|
|
|
ARG PIHOLE_VERSION
|
|
|
|
FROM pihole/pihole:${PIHOLE_VERSION:-latest}
|
2020-12-31 21:23:33 +01:00
|
|
|
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
|
2022-02-13 17:28:14 +01:00
|
|
|
COPY 99-edns.conf /etc/dnsmasq.d/99-edns.conf
|
2022-08-26 07:49:18 +02:00
|
|
|
RUN mkdir -p /etc/services.d/unbound
|
2022-04-14 06:35:22 +02:00
|
|
|
COPY unbound-run /etc/services.d/unbound/run
|
|
|
|
|
|
|
|
ENTRYPOINT ./s6-init
|
2020-12-31 21:23:33 +01:00
|
|
|
|