Portainer Templates

Adguard Home

Adblocking

AdGuard Home is a network-wide software for blocking ads & tracking. After you set it up, it’ll cover ALL your home devices, and you don’t need any client-side software for that. With the rise of Internet-Of-Things and connected devices, it becomes more and more important to be able to control your network.

Pulls: 155.9M
Stars: 1k
User: adguard
Created: Jan 28, 2019
Updated: 1 day ago
Status: active
Type Kubernetes Platform linux Image adguard/adguardhome Ports

53:53/tcp53:53/udp67:67/udp68:68/tcp68:68/udp784:784/udp853:853/tcp3000:3000/tcp80:80/tcp443:443/tcp

Volumes

/opt/adguardhome/work : /portainer/Files/AppData/Config/adguardhome/workdir /opt/adguardhome/conf : /portainer/Files/AppData/Config/adguardhome/confdir

Restart Policy unless-stopped Sourced Repo Env Vars

Installation

Via Portainer

  1. Ensure both Docker and Portainer are installed, and up-to-date
  2. Log into your Portainer web UI
  3. Under Settings → App Templates, paste the below URL
  4. Head to Home → App Templates, and the list of apps will show up
  5. Select the app you wish to deploy, fill in any config options, and hit Deploy

Template Import URL

https://raw.githubusercontent.com/Lissy93/portainer-templates/main/templates.json
Show Me demo

Via Docker Run

docker run -d \ 
  -p 53:53/tcp \
  -p 53:53/udp \
  -p 67:67/udp \
  -p 68:68/tcp \
  -p 68:68/udp \
  -p 784:784/udp \
  -p 853:853/tcp \
  -p 3000:3000/tcp \
  -p 80:80/tcp \
  -p 443:443/tcp \
  -v /portainer/Files/AppData/Config/adguardhome/workdir:/opt/adguardhome/work \
  -v /portainer/Files/AppData/Config/adguardhome/confdir:/opt/adguardhome/conf \
  --restart=unless-stopped \
  adguard/adguardhome

Via Docker Compose

Save this file as docker-compose.yml and run docker-compose up -d
Use this only as a guide.

version: '3.8'
services:
  adguard-home:
    image: adguard/adguardhome
    ports:
      - 53:53:tcp
      - 53:53:udp
      - 67:67:udp
      - 68:68:tcp
      - 68:68:udp
      - 784:784:udp
      - 853:853:tcp
      - 3000:3000:tcp
      - 80:80:tcp
      - 443:443:tcp
    volumes:
      - >-
        /portainer/Files/AppData/Config/adguardhome/workdir:/opt/adguardhome/work
      - >-
        /portainer/Files/AppData/Config/adguardhome/confdir:/opt/adguardhome/conf

Alternative Methods

For more installation options, see the Documentation in the GitHub repo

Container Documentation