Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adguard home #397

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
82 changes: 82 additions & 0 deletions adguard.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
{
"Adguard-home": {
"containers": {
"adguard": {
"image": "adguard/adguardhome",
"launch_order": 1,
"opts": [
[
"--net=adguard-home",
Hooverdan96 marked this conversation as resolved.
Show resolved Hide resolved
""
]
],
"ports": {
"53": {
"description": "DNS port",
"label": "DNS Port",
"host_default": 53
},
"67": {
"description": "DHCP port",
"label": "DHCP Port",
"host_default": 67,
"protocol": "udp"
},
"68": {
"description": "DHCP port",
"label": "DHCP Port",
"host_default": 68,
"protocol": "udp"
},
"80": {
"description": "Admin WebUI port no ssl",
"host_default": 80,
"protocol": "tcp",
"label": "WebUI Port no ssl",
"ui": true
},
"443": {
"description": "Admin WebUI port ssl",
"host_default": 443,
"label": "WebUI Port ssl",
"ui": true
},
"3000": {
"description": "WebUI Config port",
"host_default": 3000,
"label": "Port for initial Config",
"ui": true
},
"853": {
"description": "DNS over TLS Port",
"host_default": 853,
"label": "DNS over TLS Port"
},
"784": {
"description": "DNS over Quic Port",
"host_default": 784,
"label": "DNS over Quic Port"
},
"5443": {
"description": "DNSCrypt port",
"host_default": 5443,
"label": "DNSCrypt Port"
}
},
"volumes": {
"/conf": {
"description": "Choose a Share for Adguard config.",
"label": "Choose a Share for Adguard config."
},
"/work": {
"description": "Choose a Share for Adguard data.",
"label": "Choose a Share for Adguard data."
}
}
}
},
"description": "AdGuard Home is a network-wide software for blocking ads and tracking. After you set it up, it'll cover all your home devices, and you won't need any client-side software for that. <p>Based on the official Image: <a href='https://hub.docker.com/r/adguard/adguardhome' target='_blank'>https://hub.docker.com/r/adguard/adguardhome</a>, available for amd64 and arm64 architecture.</p> <p>Create a macvlan to avoid overlapping of ports which are needed by Adguard like 443 & 80. E.g., <code>docker network create -d macvlan --subnet=192.168.178.0/24 --ip-range=192.168.178.58/32 --gateway=192.168.178.1 -o parent=eth0 adguard-home</code></p><p>The docker network has to be named <code>adguard-home</code>!</p>",
"website": "https://hub.docker.com/r/adguard/adguardhome",
"version": "1.0"
}
}
1 change: 1 addition & 0 deletions root.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"2FAuth": "2FAuth.json",
"AdGuard Home": "adguard.json",
"Airsonic Advanced": "airsonic-advanced.json",
"Booksonic": "booksonic.json",
"Calibre": "calibre.json",
Expand Down