diff --git a/README.md b/README.md index 8280441..5f0eb9e 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/adguardhome/README.md b/adguardhome/README.md new file mode 100644 index 0000000..f2ee6f3 --- /dev/null +++ b/adguardhome/README.md @@ -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 diff --git a/adguardhome/docker-compose.yml b/adguardhome/docker-compose.yml new file mode 100644 index 0000000..559c174 --- /dev/null +++ b/adguardhome/docker-compose.yml @@ -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