docker-pihole-unbound/one-container/pihole-unbound/Dockerfile
Chris Crowe 3a3e03fd09
Update pihole base container to 2021.09 (#72)
* Update pihole base container to 2021.09
* README typo fix
2021-09-19 17:20:56 -07:00

9 lines
340 B
Docker

FROM pihole/pihole:2021.09
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 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