You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
405 B
YAML
16 lines
405 B
YAML
# docker-compose.yml
|
|
# Docker Hub: https://hub.docker.com/r/pihole/pihole
|
|
# The WebUI can be found at http://<HOST_IP>/admin
|
|
|
|
services:
|
|
pi-hole:
|
|
container_name: pi-hole
|
|
environment:
|
|
- TZ=<TZ>
|
|
- WEBPASSWORD=<PASSWORD>
|
|
image: pihole/pihole:<VERSION_TAG>
|
|
network_mode: host
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ./pihole:/etc/pihole
|
|
- ./dnsmasq.d:/etc/dnsmasq.d |