From c82afaad73caa3865055051b0841ef419944dcc7 Mon Sep 17 00:00:00 2001 From: Cris Mathew Date: Thu, 29 Feb 2024 00:47:03 +0300 Subject: [PATCH] Add adguard-home/compose.yml --- adguard-home/compose.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 adguard-home/compose.yml diff --git a/adguard-home/compose.yml b/adguard-home/compose.yml new file mode 100644 index 0000000..767e270 --- /dev/null +++ b/adguard-home/compose.yml @@ -0,0 +1,27 @@ +version: "3.7" +services: + adguardhome: + image: adguard/adguardhome + container_name: adguardhome + restart: always + ports: + # DNS Ports + - 53:53/tcp + - 53:53/udp + - 443:443/tcp + - 853:853/tcp + - 784:784/udp + - 3000:3000/tcp + - 80:80/tcp + environment: + TZ: Asia/Riyadh + volumes: + - /opt/adguardhome/work:/opt/adguardhome/work + - /opt/adguardhome/conf:/opt/adguardhome/conf + networks: + priv_lan: + ipv4_address: 192.168.1.53 #if you comment this, it will take the first available IP from the set IP Range +networks: + priv_lan: + external: true + name: priv_lan \ No newline at end of file