docker-pihole-unbound/one-container/pihole-unbound/Dockerfile
Chris Crowe 8cb2c34de4
Upgrading base container to 2021.12 (#92)
* Upgrading base container to 2021.12

* Bumping to 2021.12.1
2021-12-26 14:09:08 -08:00

9 lines
342 B
Docker

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