mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-21 17:56:53 +02:00
add adguardhome
This commit is contained in:
parent
8e5952390c
commit
c2b79b5f3f
@ -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
9
adguardhome/README.md
Normal 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
|
18
adguardhome/docker-compose.yml
Normal file
18
adguardhome/docker-compose.yml
Normal 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
|
Loading…
Reference in New Issue
Block a user