mirror of
https://github.com/GHOSCHT/franz.git
synced 2024-11-10 03:31:59 +01:00
Init dns
This commit is contained in:
parent
5948437a44
commit
2fa9fad1f7
1 changed files with 54 additions and 0 deletions
54
dns/docker-compose.yml
Normal file
54
dns/docker-compose.yml
Normal file
|
@ -0,0 +1,54 @@
|
||||||
|
version: '2'
|
||||||
|
|
||||||
|
services:
|
||||||
|
pihole:
|
||||||
|
container_name: pihole
|
||||||
|
image: pihole/pihole
|
||||||
|
|
||||||
|
hostname: pihole
|
||||||
|
volumes:
|
||||||
|
- pihole_dnsmasq:/etc/dnsmasq.d
|
||||||
|
- pihole_data:/etc/pihole
|
||||||
|
restart: always
|
||||||
|
environment:
|
||||||
|
- IPv6=True
|
||||||
|
- TZ=Europe/Berlin
|
||||||
|
- SKIPGRAVITYONBOOT=1
|
||||||
|
- VIRTUAL_HOST=pihole
|
||||||
|
ports:
|
||||||
|
- "53:53/tcp"
|
||||||
|
- "53:53/udp"
|
||||||
|
- "8420:80"
|
||||||
|
cap_add:
|
||||||
|
- NET_ADMIN
|
||||||
|
networks:
|
||||||
|
traefik_net:
|
||||||
|
labels:
|
||||||
|
- traefik.enable=true
|
||||||
|
- traefik.http.routers.pihole.entrypoints=web
|
||||||
|
- traefik.http.routers.pihole.rule=Host(`pihole.franz.local`)
|
||||||
|
- traefik.http.services.pihole.loadbalancer.server.port=80
|
||||||
|
|
||||||
|
unbound:
|
||||||
|
container_name: unbound
|
||||||
|
image: mvance/unbound-rpi
|
||||||
|
volumes:
|
||||||
|
- unbound_data:/opt/unbound/etc/unbound
|
||||||
|
dns:
|
||||||
|
- 1.1.1.1
|
||||||
|
restart: always
|
||||||
|
networks:
|
||||||
|
traefik_net:
|
||||||
|
|
||||||
|
networks:
|
||||||
|
traefik_net:
|
||||||
|
name: traefik-net
|
||||||
|
external: true
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
pihole_dnsmasq:
|
||||||
|
name: pihole_dnsmasq
|
||||||
|
pihole_data:
|
||||||
|
name: pihole_data
|
||||||
|
unbound_data:
|
||||||
|
name: unbound_data
|
Loading…
Reference in a new issue