diff --git a/README.md b/README.md index f63bab8..48a1e83 100644 --- a/README.md +++ b/README.md @@ -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/ diff --git a/adguard-home/compose.yml b/adguard-home/compose.yml index 797be66..bdb59dd 100644 --- a/adguard-home/compose.yml +++ b/adguard-home/compose.yml @@ -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: diff --git a/pihole/compose.yml b/pihole/compose.yml new file mode 100644 index 0000000..233df17 --- /dev/null +++ b/pihole/compose.yml @@ -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 + \ No newline at end of file