Update pihole base container to 2021.09 (#72)
* Update pihole base container to 2021.09 * README typo fix
This commit is contained in:
parent
4d7fac1d67
commit
3a3e03fd09
3 changed files with 4 additions and 3 deletions
|
@ -6,6 +6,7 @@ This repo has 2 different `docker-compose` configs-- choose your favorite. The `
|
|||
|
||||
- [`one-container`](one-container/) (new) - Install Unbound directly into the Pi-Hole container
|
||||
- This configuration contacts the DNS root servers directly, please read the Pi-Hole docs on [Pi-hole as All-Around DNS Solution](https://docs.pi-hole.net/guides/unbound/) to understand what this means.
|
||||
- With this approach, we can also simply our networking since `macvlan` is no longer necessary.
|
||||
- With this approach, we can also simplify our Docker networking since `macvlan` is no longer necessary.
|
||||
- [`two-container`](two-container/) (legacy) - Use separate containers for Pi-Hole and Unbound
|
||||
- This configuration uses MatthewVance's [unbound-docker](https://github.com/MatthewVance/unbound-docker) container to implement encrypted DNS to third party DNS resolvers (eg Cloudflare). This is arguably less privacy-friendly since you're handing your DNS queries to those 3rd party providers.
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
FROM pihole/pihole:v5.8.1
|
||||
FROM pihole/pihole:2021.09
|
||||
RUN apt update && apt install -y unbound
|
||||
|
||||
COPY lighttpd-external.conf /etc/lighttpd/external.conf
|
||||
|
|
|
@ -1 +1 @@
|
|||
v5.8.1-1
|
||||
2021.09
|
||||
|
|
Loading…
Reference in a new issue