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
2023-05-08 23:49:04 +02:00

18 lines
433 B
YAML

version: "3"
services:
pihole:
image: pihole/pihole:latest
container_name: pihole
network_mode: "host"
environment:
TZ: 'Europe/Amsterdam'
WEBPASSWORD: 'admin'
PIHOLE_DNS_: '192.168.30.1'
INTERFACE: wg0
DNSMASQ_LISTENING: single
WEB_BIND_ADDR: 192.168.30.128
volumes:
- /mnt/data/pihole:/etc/pihole
- /mnt/data/dnsmasq:/etc/dnsmasq.d
restart: unless-stopped