mirror of
https://github.com/Dokploy/templates
synced 2025-06-26 18:16:07 +00:00
- Introduced AdGuard Home entry in meta.json with detailed description, logo, and relevant links. - Added Docker Compose configuration for AdGuard Home service. - Created template.toml for AdGuard Home configuration with default variables.
21 lines
458 B
YAML
21 lines
458 B
YAML
version: "3.8"
|
|
services:
|
|
adguardhome:
|
|
image: adguard/adguardhome:latest
|
|
restart: unless-stopped
|
|
ports:
|
|
- "53:53/tcp"
|
|
- "53:53/udp"
|
|
- "784:784/udp"
|
|
- "853:853/tcp"
|
|
- "853:853/udp"
|
|
- "8853:8853/udp"
|
|
- "5443:5443/tcp"
|
|
- "5443:5443/udp"
|
|
volumes:
|
|
- adguardhome-work:/opt/adguardhome/work
|
|
- adguardhome-conf:/opt/adguardhome/conf
|
|
|
|
volumes:
|
|
adguardhome-work: {}
|
|
adguardhome-conf: {} |