2022-01-08 03:53:23 +01:00
|
|
|
FROM pihole/pihole:2022.01.1
|
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
|
2021-02-02 18:04:09 +01:00
|
|
|
COPY start_unbound_and_s6_init.sh start_unbound_and_s6_init.sh
|
2020-12-31 21:23:33 +01:00
|
|
|
|
2021-02-02 18:04:09 +01:00
|
|
|
RUN chmod +x start_unbound_and_s6_init.sh
|
|
|
|
ENTRYPOINT ./start_unbound_and_s6_init.sh
|