21 lines
484 B
YAML
21 lines
484 B
YAML
|
|
services:
|
||
|
|
pihole:
|
||
|
|
container_name: pihole
|
||
|
|
image: pihole/pihole:latest
|
||
|
|
ports:
|
||
|
|
- '53:53/tcp'
|
||
|
|
- '53:53/udp'
|
||
|
|
- '82:80/tcp'
|
||
|
|
- '4443:443/tcp'
|
||
|
|
environment:
|
||
|
|
TZ: 'Asia/Yekaterinburg'
|
||
|
|
FTLCONF_webserver_api_password: 'trpcar'
|
||
|
|
FTLCONF_misc_check_load: false
|
||
|
|
FTLCONF_dns_listeningMode: 'ALL'
|
||
|
|
volumes:
|
||
|
|
- './etc-pihole:/etc/pihole'
|
||
|
|
cap_add:
|
||
|
|
- NET_ADMIN
|
||
|
|
- SYS_TIME
|
||
|
|
- SYS_NICE
|
||
|
|
restart: unless-stopped
|