mirror of
https://github.com/dominikhoebert/docker-projects.git
synced 2025-06-28 01:07:07 +00:00
added pihole
This commit is contained in:
parent
a9a494d3f8
commit
58f50ac33a
@ -82,7 +82,7 @@ docker network create --driver bridge proxy
|
|||||||
- cadvisor 8096
|
- cadvisor 8096
|
||||||
- heimdall 8097
|
- heimdall 8097
|
||||||
- homer 8099
|
- homer 8099
|
||||||
- pihole
|
- pihole 9002 test on windows
|
||||||
- https://github.com/claabs/epicgames-freegames-node
|
- https://github.com/claabs/epicgames-freegames-node
|
||||||
- https://github.com/vogler/free-games-claimer
|
- https://github.com/vogler/free-games-claimer
|
||||||
- https://about.gitea.com/
|
- https://about.gitea.com/
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
# https://hub.docker.com/r/adguard/adguardhome
|
# https://hub.docker.com/r/adguard/adguardhome
|
||||||
# Network-wide ads & trackers blocking DNS server
|
# Network-wide ads & trackers blocking DNS server
|
||||||
|
|
||||||
|
# should not be run at the same time as pihole
|
||||||
name: adguard-home
|
name: adguard-home
|
||||||
services:
|
services:
|
||||||
adguardhome:
|
adguardhome:
|
||||||
|
37
pihole/compose.yml
Normal file
37
pihole/compose.yml
Normal 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
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user