diff --git a/adguard-home/.gitignore b/adguard-home/.gitignore new file mode 100644 index 0000000..1bf45b1 --- /dev/null +++ b/adguard-home/.gitignore @@ -0,0 +1,2 @@ +conf/ +work/ diff --git a/adguard-home/README.md b/adguard-home/README.md new file mode 100644 index 0000000..3dcdf73 --- /dev/null +++ b/adguard-home/README.md @@ -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 diff --git a/adguard-home/docker-compose.yaml b/adguard-home/docker-compose.yaml new file mode 100644 index 0000000..df88696 --- /dev/null +++ b/adguard-home/docker-compose.yaml @@ -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"