Update yaml to yml

This commit is contained in:
2025-06-08 13:50:37 +05:30
parent 099b0b4045
commit 7b597b7faa
47 changed files with 2 additions and 172 deletions

View File

@@ -0,0 +1,17 @@
version: "3.8"
services:
pihole-unbound:
container_name: "pihole-unbound"
image: "rlabinc/pihole-unbound:2024.02.2"
environment:
- "TZ=${TZ}"
- "WEBPASSWORD=${WEBPASSWORD}"
volumes:
- "${ETC_PIHOLE_PATH}:/etc/pihole"
- "${ETC_DNSMASQ_PATH}:/etc/dnsmasq.d"
# - "${UNBOUND_PATH}:/opt/unbound/etc/unbound" #For custom Unbound conf
ports:
- "53:53/tcp"
- "53:53/udp"
- "${PORT}:80/tcp"
restart: "unless-stopped"