21 lines
688 B
YAML
21 lines
688 B
YAML
version: "3.7"
|
|
|
|
services:
|
|
server:
|
|
image: pihole/pihole:2026.02.0@sha256:ee348529cea9601df86ad94d62a39cad26117e1eac9e82d8876aa0ec7fe1ba27
|
|
# Pi-hole doesn't currently support running as non-root
|
|
# https://github.com/pi-hole/docker-pi-hole/issues/685
|
|
# user: "1000:1000"
|
|
restart: on-failure
|
|
network_mode: host
|
|
volumes:
|
|
- ${APP_DATA_DIR}/data/pihole:/etc/pihole/
|
|
- ${APP_DATA_DIR}/data/dnsmasq:/etc/dnsmasq.d/
|
|
environment:
|
|
- FTLCONF_webserver_api_password=${APP_PASSWORD}
|
|
- FTLCONF_webserver_port=8082,[::]:8082
|
|
# Listen on all interfaces, permit all origins
|
|
- FTLCONF_dns_listeningMode=all
|
|
cap_add:
|
|
- NET_ADMIN
|