Installing & Configuring AdGuard Home using Docker

text goes here.


version: "3"
services:
  ath3na001.heinzsolar.com:
    image: adguard/adguardhome:latest
    container_name: ath3na001.heinzsolar.com
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=America/Chicago
    volumes:
      - ath3na001_work:/opt/adguardhome/work
      - ath3na001_conf:/opt/adguardhome/conf
    ports:
      - "53:53/tcp"
      - "53:53/udp"
      - "80:80/tcp"
      - "443:443/tcp"
      - "443:443/udp"
      - "3000:3000/tcp"
      - "853:853/tcp"
      - "784:784/udp"
      - "853:853/udp"
      - "8853:8853/udp"
      - "5443:5443/tcp"
      - "5443:5443/udp"
    restart: unless-stopped
    
volumes:
  ath3na001_work:
  ath3na001_conf: