# AdGuard Home •

[AdGuard Home](https://adguard.com/en/adguard-home/overview.html) is a software service that automatically blocks ads and web tracking for every device in your network.

# Overview

[![Screen Shot 2025-03-07 at 21.54.41.png](https://hub.subspace.services/uploads/images/gallery/2025-03/scaled-1680-/screen-shot-2025-03-07-at-21-54-41.png)](https://hub.subspace.services/uploads/images/gallery/2025-03/screen-shot-2025-03-07-at-21-54-41.png)

[AdGuard Home](https://adguard.com/en/adguard-home/overview.html) is a software service that automatically blocks ads and web tracking for every device in your network.

- Puts you in complete control over your network traffic, allowing you to block certain websites and services.
- Configure how much data is retained about traffic on your network and by which device.
- Perform your own DNS server lookups and prevent third-party companies from snooping.

# Media

## Screenshots

<p class="callout info">AdGuard Home v0.107.55</p>

<table border="1" id="bkmrk-" style="border-collapse: collapse; width: 100%; border-width: 1px; height: 59.6px; border-color: rgb(88, 110, 117);"><colgroup><col style="width: 33.3333%;"></col><col style="width: 33.3333%;"></col><col style="width: 33.3333%;"></col></colgroup><tbody><tr style="height: 29.8px;"><td style="border-width: 1px; height: 29.8px; border-color: rgb(88, 110, 117);">[![Screen Shot 2025-03-07 at 21.54.41.png](https://hub.subspace.services/uploads/images/gallery/2025-03/scaled-1680-/screen-shot-2025-03-07-at-21-54-41.png)](https://hub.subspace.services/uploads/images/gallery/2025-03/screen-shot-2025-03-07-at-21-54-41.png)</td><td style="border-width: 1px; height: 29.8px; border-color: rgb(88, 110, 117);">[![Screen Shot 2025-03-07 at 21.50.44.png](https://hub.subspace.services/uploads/images/gallery/2025-03/scaled-1680-/screen-shot-2025-03-07-at-21-50-44.png)](https://hub.subspace.services/uploads/images/gallery/2025-03/screen-shot-2025-03-07-at-21-50-44.png)</td><td style="border-width: 1px; height: 29.8px; border-color: rgb(88, 110, 117);">[![Screen Shot 2025-03-07 at 21.50.51.png](https://hub.subspace.services/uploads/images/gallery/2025-03/scaled-1680-/screen-shot-2025-03-07-at-21-50-51.png)](https://hub.subspace.services/uploads/images/gallery/2025-03/screen-shot-2025-03-07-at-21-50-51.png)</td></tr><tr style="height: 29.8px;"><td style="border-width: 1px; height: 29.8px; border-color: rgb(88, 110, 117);">[![Screen Shot 2025-03-07 at 21.51.46.png](https://hub.subspace.services/uploads/images/gallery/2025-03/scaled-1680-/screen-shot-2025-03-07-at-21-51-46.png)](https://hub.subspace.services/uploads/images/gallery/2025-03/screen-shot-2025-03-07-at-21-51-46.png)</td><td style="border-width: 1px; height: 29.8px; border-color: rgb(88, 110, 117);">  
</td><td style="border-width: 1px; height: 29.8px; border-color: rgb(88, 110, 117);">  
</td></tr></tbody></table>

# Setup & Configuration

We need to install the service through Portainer and configure any necessary settings.

# Preparation

There are some things we need to do in preparation to install this service.

## Volumes

<details id="bkmrk-media-folders-radarr"><summary>Persistent Data</summary>

This is where the service will store its own application data and ensures we can quickly update the service image.

<p class="callout warning">Ensure your user has permissions to access the folder.</p>

</details>

# Installation

The service can be installed through the Portainer web interface.

<p class="callout info">Learn about [creating a new stack](https://hub.subspace.services/books/portainer/page/creating-a-new-stack "Creating a New Stack").</p>

## Docker Compose

Use the following code to install the service:

```yaml
---
services:
  adguard:
    image: adguard/adguardhome:latest
    network_mode: bridge
    dns:
     - 1.1.1.1
    ports:
      - 3333:3000
      - 53:53/tcp
      - 53:53/udp
      - 67:67/udp
      - 88:80
      - 853:853
    volumes:
      # Persistent Data
      - /srv/adguard/data:/opt/adguardhome/work
      - /srv/adguard/conf:/opt/adguardhome/conf
    restart: unless-stopped
```

# Updating

<p class="callout success">Re-Deploy the Stack</p>

This service has been optimized for running in Docker.

This allows you to [re-deploy the stack through Portainer](https://hub.subspace.services/books/portainer/page/updating-a-stack "Updating a Stack") to download the latest updates.

# User Manual

# Development

<p class="callout info">This software is released under the [GPL-3.0 license](https://opensource.org/license/gpl-3-0). </p>

You can learn more about how to contribute to AdGuard Home through their [GitHub repository](https://github.com/AdguardTeam/AdGuardHome?tab=readme-ov-file#contributing).

# Resources

## Official

- [Official Documentation](https://adguard-dns.io/kb/adguard-home/getting-started/)
- [Official Forum](https://adguard.com/en/discuss.html)
- [Official GitHub Repository](https://github.com/AdguardTeam/AdguardHome)
- [Official Website](https://adguard.com/en/adguard-home/overview.html)
- [Installation Guide](https://adguard-dns.io/kb/adguard-home/getting-started/#installation)
- [Frequently Asked Questions](https://adguard-dns.io/kb/adguard-home/faq/)