Skip to content

AdGuard Home

DNS ad-blocking and filtering service that blocks ads and trackers at the network level.

Docker Compose Example

adguard:
  image: adguard/adguardhome:latest
  container_name: networking-adguard
  restart: unless-stopped
  ports:
    - "53:53/tcp"     # DNS
    - "53:53/udp"     # DNS
    - "3000:3000/tcp" # Setup interface
    - "80:80/tcp"     # Web interface
  volumes:
    - adguard_work:/opt/adguardhome/work
    - adguard_conf:/opt/adguardhome/conf