Make the wedding service work

This commit is contained in:
Thomas Kleinendorst 2024-11-21 15:25:20 +01:00
parent e097eb9c93
commit 9cb8f7eb2e
2 changed files with 17 additions and 32 deletions

View file

@ -12,15 +12,12 @@
community.docker.docker_container:
name: pi-hole
image: "docker.io/pihole/pihole:{{ pi_hole_version }}"
ports:
- "53:53/tcp"
- "53:53/udp"
- "127.0.0.1:8080:80/tcp"
mounts:
- source: pihole_data
target: /etc/pihole
- source: dnsmasq_data
target: /etc/dnsmasq.d
network_mode: host
restart_policy: always
env:
TZ: 'Europe/Amsterdam'
@ -30,6 +27,7 @@
PIHOLE_DNS_: 1.1.1.1;1.0.0.1
DNSMASQ_USER: root
DNSMASQ_LISTENING: all
WEB_PORT: '8080'
- name: Include simple-reverse-proxy role
ansible.builtin.include_role:
name: simple-reverse-proxy