docker-pihole-unbound/one-container/pihole-unbound/Dockerfile
Chris 7b41e2bf42 Updating to pihole container v5.6
Also lockingt he base container version in the Dockerfile,
I'll be doing releases like this from now on
2021-02-08 23:34:03 -08:00

9 lines
337 B
Docker

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