added pihole

This commit is contained in:
dominikhoebert 2024-08-02 17:05:54 +02:00
parent a9a494d3f8
commit 58f50ac33a
3 changed files with 40 additions and 1 deletions

View File

@ -82,7 +82,7 @@ docker network create --driver bridge proxy
- cadvisor 8096
- heimdall 8097
- homer 8099
- pihole
- pihole 9002 test on windows
- https://github.com/claabs/epicgames-freegames-node
- https://github.com/vogler/free-games-claimer
- https://about.gitea.com/

View File

@ -1,5 +1,7 @@
# https://hub.docker.com/r/adguard/adguardhome
# Network-wide ads & trackers blocking DNS server
# should not be run at the same time as pihole
name: adguard-home
services:
adguardhome:

37
pihole/compose.yml Normal file
View File

@ -0,0 +1,37 @@
# https://pi-hole.net/
# blocks ads and trackers across your entire network
# should not be run at the same time as adguard!
name: pihole
services:
pihole:
container_name: pihole
image: docker.io/pihole/pihole:2024.07.0
ports:
- 53:53/tcp
- 53:53/udp
- 67:67/udp
- 9002:80/tcp
#- 443:443/tcp
environment:
- TZ=Europe/Vienna
- WEBPASSWORD=your-secret-password
volumes:
- dnsmasq:/etc/dnsmasq.d
- etcd:/etc/pihole
networks:
- proxy
networks:
proxy:
external: true
volumes:
dnsmasq:
driver: local
etcd:
driver: local