docker-pihole-unbound/one-container/pihole-unbound/Dockerfile
Chris Crowe 5969c76ee1
2022.02.1 (#101)
Update base container to 2022.02.1
2022-02-13 08:55:58 -08:00

10 lines
388 B
Docker

FROM pihole/pihole:2022.02.1
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 chmod +x start_unbound_and_s6_init.sh
ENTRYPOINT ./start_unbound_and_s6_init.sh