This repository has been archived on 2023-05-09. You can view files and clone it, but cannot push or open issues or pull requests.
carwash/ansible/docker-compose.yml.j2
2023-05-09 14:25:26 +02:00

20 lines
502 B
Django/Jinja

# vi: ft=yaml
version: "3"
services:
pihole:
image: pihole/pihole:latest
container_name: pihole
network_mode: "host"
environment:
TZ: 'Europe/Amsterdam'
WEBPASSWORD: {{ pihole_password }}
PIHOLE_DNS_: '192.168.30.1'
INTERFACE: wg0
DNSMASQ_LISTENING: single
WEB_BIND_ADDR: 192.168.30.128
FTLCONF_LOCAL_IPV4: 192.168.30.128
volumes:
- /mnt/data/pihole:/etc/pihole
- /mnt/data/dnsmasq:/etc/dnsmasq.d
restart: unless-stopped