-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yaml
More file actions
67 lines (61 loc) · 1.81 KB
/
compose.yaml
File metadata and controls
67 lines (61 loc) · 1.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
name: adguardhome
x-daemonless:
title: "AdGuard Home"
icon: ":simple-adguard:"
category: "Network"
description: "Network-wide ad and tracker blocking DNS server. Covers all devices on your network with no client-side software — includes DoH, DoT, DoQ, and a built-in DHCP server."
upstream_url: "https://github.com/AdguardTeam/AdGuardHome"
web_url: "https://adguard.com/adguard-home.html"
freshports_url: "https://www.freshports.org/net-mgmt/adguardhome/"
user: "bsd"
mlock: false
upstream_binary: false
appjail: true
docs:
env:
PUID: "User ID for the application process"
PGID: "Group ID for the application process"
TZ: "Timezone for the container"
volumes:
/opt/adguardhome/conf: "Configuration files"
/opt/adguardhome/work: "Work directory (database, logs, data)"
ports:
3000: "Web UI (Setup/Admin)"
53: "DNS (TCP/UDP)"
67/udp: "DHCP Server"
68/udp: "DHCP Client"
80: "HTTP"
443: "HTTPS / DNS-over-HTTPS (TCP/UDP)"
784/udp: "DNS-over-QUIC"
853: "DNS-over-TLS (TCP/UDP)"
5443: "DNS-over-HTTPS (TCP/UDP)"
6060: "Admin API"
8853/udp: "DNS-over-QUIC"
services:
adguardhome:
image: ghcr.io/daemonless/adguardhome:latest
container_name: adguardhome
restart: unless-stopped
environment:
- PUID=1000
- PGID=1000
- TZ=UTC
volumes:
- /path/to/containers/adguardhome/conf:/opt/adguardhome/conf
- /path/to/containers/adguardhome/work:/opt/adguardhome/work
ports:
- "3000:3000"
- "53:53"
- "53:53/udp"
- "67:67/udp"
- "68:68/udp"
- "80:80"
- "443:443"
- "443:443/udp"
- "784:784/udp"
- "853:853"
- "853:853/udp"
- "5443:5443"
- "5443:5443/udp"
- "6060:6060"
- "8853:8853/udp"