Instalar AdGuard en Docker

Instalar Adguard en Docker

AdGuard Home es un software de toda la red para bloquear anuncios y rastrear. Después de configurarlo, cubrirá todos los dispositivos de su hogar y no necesitará ningún software del lado del cliente para eso. Obtenga más información en nuestro repositorio oficial de Github.


GitHub: https://github.com/JLalib/docker-adguard

Repo AdGuard en Docker Hub: https://hub.docker.com/r/adguard/adguardhome

Crear fichero docker-compose.yml ó bien stack desde Portainer.


# Note: 192.168.1.xxx is an example network, you must update all these to match your own.
version: "2.1"
services:
  adguard:
    container_name: adguard
    image: adguard/adguardhome:latest
    cap_add:
      - NET_ADMIN
    networks:
      macvlan_NET:                      # <-- MACVlan Name no need to change, but do not exist previosly.
        ipv4_address: 192.168.1.200     # <-- Update
    volumes:
      - $HOME/docker/adguard/work:/opt/adguardhome/work
      - $HOME/docker/adguard/conf:/opt/adguardhome/conf
    restart: unless-stopped
networks:
  macvlan_NET:
    driver: macvlan
    driver_opts:
      parent: eth0                       # <- Update to match your NIC see your OMV WebGUI
    ipam:
      config:
        - subnet: 192.168.1.0/24            # <-- Update
          gateway: 192.168.1.1              # <-- Update
          ip_range: 192.168.1.0/24          # <-- Update




Vídeo paso a paso.

Comentarios

Entradas populares de este blog

Cómo arreglar el error 0x80070643 al instalar Windows 10 KB5034441: guía paso a paso

Configurar #VPN #OpenVPN en #Mikrotik - Router OS

Cómo Instalar y configurar SERVIDOR VPN WIREGUARD en MIKROTIK 🔐 #VPN #Wireguard #Mikrotik #RouterOS