From 2eb09a3c683115d7b6222027bb2ca545c444c343 Mon Sep 17 00:00:00 2001 From: leo Date: Tue, 6 Sep 2022 08:23:29 +0200 Subject: [PATCH] added adguard home --- adguard-home/.gitignore | 2 ++ adguard-home/README.md | 13 +++++++++++++ adguard-home/docker-compose.yaml | 10 ++++++++++ 3 files changed, 25 insertions(+) create mode 100644 adguard-home/.gitignore create mode 100644 adguard-home/README.md create mode 100644 adguard-home/docker-compose.yaml 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"