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

21 lines
502 B
Text
Raw Normal View History

2023-05-09 12:25:26 +00:00
# vi: ft=yaml
2023-05-08 21:49:04 +00:00
version: "3"
services:
pihole:
image: pihole/pihole:latest
container_name: pihole
network_mode: "host"
environment:
TZ: 'Europe/Amsterdam'
2023-05-09 12:25:26 +00:00
WEBPASSWORD: {{ pihole_password }}
2023-05-08 21:49:04 +00:00
PIHOLE_DNS_: '192.168.30.1'
INTERFACE: wg0
DNSMASQ_LISTENING: single
WEB_BIND_ADDR: 192.168.30.128
2023-05-09 12:25:26 +00:00
FTLCONF_LOCAL_IPV4: 192.168.30.128
2023-05-08 21:49:04 +00:00
volumes:
- /mnt/data/pihole:/etc/pihole
- /mnt/data/dnsmasq:/etc/dnsmasq.d
restart: unless-stopped