Compare commits

...

2 Commits

Author SHA1 Message Date
47416e7a82 feat: add adguard 2025-12-15 22:21:27 +00:00
42868a991e feat: remove coredns 2025-12-15 22:20:07 +00:00
2 changed files with 18 additions and 12 deletions

View File

@@ -0,0 +1,18 @@
services:
adguardhome:
container_name: adguardhome
image: adguard/adguardhome
restart: unless-stopped
ports:
# DNS Ports (Must remain directly exposed)
- "53:53/tcp"
- "53:53/udp"
# Web Interface Mapping
# Format is "HOST_PORT:CONTAINER_PORT"
- "8080:80/tcp" # Access UI via http://your-ip:8080
- "3022:3000/tcp" # Required for the initial setup wizard
volumes:
- ./work:/opt/adguardhome/work
- ./conf:/opt/adguardhome/conf

View File

@@ -1,12 +0,0 @@
services:
coredns:
image: coredns/coredns:latest
container_name: coredns
command: -conf /etc/coredns/Corefile -dns.port 53
ports:
- "53:53"
- "53:53/udp"
- "8080:8080"
volumes:
- ./Corefile:/etc/coredns/Corefile
- ./db.kendricklab.int:/etc/coredns/db.kendricklab.int