1
0
Fork 0

added adguard home

This commit is contained in:
leo 2022-09-06 08:23:29 +02:00
parent 67d2b5ae54
commit 2eb09a3c68
3 changed files with 25 additions and 0 deletions

2
adguard-home/.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
conf/
work/

13
adguard-home/README.md Normal file
View file

@ -0,0 +1,13 @@
# Adguard Home Docker container
### requirements:
- installed linux system with docker-compose
- running in /services/adguard
### configuration:
- webinterface reachable via port 3000
Website:
https://adguard.com

View file

@ -0,0 +1,10 @@
version: '3.7'
services:
adguardhome:
container_name: adguardhome
image: adguard/adguardhome:latest
restart: unless-stopped
volumes:
- /services/adguard/work:/opt/adguardhome/work
- /services/adguard/conf:/opt/adguardhome/conf
network_mode: "host"