21 lines
671 B
YAML
21 lines
671 B
YAML
- name: pi-hole
|
|
community.docker.docker_container:
|
|
name: pi-hole
|
|
image: pihole/pihole:2024.03.2
|
|
# For DHCP it is recommended to remove these ports and instead add: network_mode: "host"
|
|
ports:
|
|
- "53:53/tcp"
|
|
- "53:53/udp"
|
|
# - "8092:80/tcp"
|
|
env:
|
|
TZ: 'Europe/Prague'
|
|
WEBPASSWORD: "{{ password }}"
|
|
# Volumes store your data between container upgrades
|
|
volumes:
|
|
- "{{ docker_homepath }}/etc-pihole:/etc/pihole"
|
|
- "{{ docker_homepath }}/etc-dnsmasq.d:/etc/dnsmasq.d"
|
|
# https://github.com/pi-hole/docker-pi-hole#note-on-capabilities
|
|
restart_policy: unless-stopped
|
|
networks:
|
|
- name: http
|