add adguardhome

This commit is contained in:
kev 2021-03-22 18:35:30 +08:00
parent 8e5952390c
commit c2b79b5f3f
3 changed files with 28 additions and 0 deletions

View File

@ -284,6 +284,7 @@ A collection of delicious docker recipes.
## 3rd-party (sorted by basename)
- [x] adguard/adguardhome
- [x] ghcr.io/linuxserver/airsonic :musical_note:
- [x] archivebox/archivebox
- [x] docker.bintray.io/jfrog/artifactory-oss

9
adguardhome/README.md Normal file
View File

@ -0,0 +1,9 @@
adguardhome
===========
AdGuard Home is a network-wide software for blocking ads & tracking. After you
set it up, it'll cover ALL your home devices, and you don't need any
client-side software for that. You can learn more about it in our [official
Github repository][1].
[1]: https://github.com/AdguardTeam/AdGuardHome

View File

@ -0,0 +1,18 @@
version: "3.8"
services:
adguardhome:
image: adguard/adguardhome
ports:
- "53:53/tcp"
- "53:53/udp"
- "67:67/udp"
- "68:68/tcp"
- "68:68/udp"
- "80:80/tcp"
- "443:443/tcp"
- "853:853/tcp"
- "3000:3000/tcp"
volumes:
- ./data/conf:/opt/adguardhome/conf
- ./data/work:/opt/adguardhome/work
restart: unless-stopped