AdGuard Home Docker

Pinned Featured

Comments

5 comments

  • Avatar
    Francisco Javier Mellado

    Thanks! Very useful! It works.

    0
    Comment actions Permalink
  • Avatar
    Nishal Patel

    Thx for this.  It worked. Only thing is Docker and YAML is new to me.  Had to figure out that YAML is formatted.  Use the one below with formatting needed. 

    version: "3"

    services:
    adguardhome:
    container_name: adguardhome
    image: adguard/adguardhome
    volumes:
    - '/data/adguardhome/work/:/opt/adguardhome/work'
    - './adguardhome/conf/:/opt/adguardhome/conf'
    restart: unless-stopped
    networks:
    default:
    # static IP address for adguardhome
    ipv4_address: 172.16.0.2
    networks:
    default:
    driver: bridge
    ipam:
    config:
    # your chosen docker network here
    - subnet: 172.16.0.0/24
    0
    Comment actions Permalink
  • Avatar
    kyee99

    Does anyone have trouble with failing IPv6 tests at sites like internet.nl and https://test-ipv6.com/  with this setup?

    0
    Comment actions Permalink
  • Avatar
    Alessandro Miccono

    Hi, 

    I have the service up&running and the system seems using that. But there is no stats seems and to be honest i'm not sure if it's working or it's my firewalla that act as AdBlocker.

    If i do a nslookup my win is using 172.16.0.2 ad dns resolver but as i said the no stats seems weird.

    Any hint?

    0
    Comment actions Permalink
  • Avatar
    Matt Niswonger

    On 22.04 docker compose needs a custom network name specified in the yaml for the configs above to work.  Easy enough, just add a line and specify the name under the networks element, ex:

    networks:

     default:

      name: adguardhome_default

      driver: bridge

      ipam:

       config:

        # your chosen docker network here

        - subnet: 172.16.0.0/24

    0
    Comment actions Permalink

Please sign in to leave a comment.