mirror of
https://git.korhonen.cc/FunctionalHacker/dotfiles.git
synced 2024-11-04 18:00:20 +00:00
Add pihole
This commit is contained in:
parent
2b1e159301
commit
ec9213bf4f
34
docker/pihole/docker-compose.yml
Normal file
34
docker/pihole/docker-compose.yml
Normal file
@ -0,0 +1,34 @@
|
||||
version: "3"
|
||||
|
||||
services:
|
||||
pihole:
|
||||
container_name: pihole
|
||||
image: pihole/pihole:latest
|
||||
ports:
|
||||
- "53:53/tcp"
|
||||
- "53:53/udp"
|
||||
- "67:67/udp"
|
||||
- "8053:80/tcp"
|
||||
environment:
|
||||
TZ: "Europe/Helsinki"
|
||||
volumes:
|
||||
- /docker/pihole/pihole/:/etc/pihole/
|
||||
- /docker/pihole/dnsmasq/:/etc/dnsmasq.d/
|
||||
- /docker/pihole/log/:/var/log/pihole.log
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
dns:
|
||||
- 127.0.0.1
|
||||
- 1.1.1.1
|
||||
cap_add:
|
||||
- NET_ADMIN
|
||||
restart: always
|
||||
labels:
|
||||
- "traefik.enable=true"
|
||||
- "traefik.frontend.rule=HostRegexp:pihole.reekynet.lan,{catchall:.*}"
|
||||
- "traefik.frontend.priority=1"
|
||||
- "traefik.backend=pihole"
|
||||
- "traefik.port=80"
|
||||
|
||||
networks:
|
||||
proxy:
|
||||
external: true
|
Loading…
Reference in New Issue
Block a user