Search the Community
Showing results for tags 'adguard'.
-
To install adguard as a proxmox container. 1. download container server Ubuntu, Alpine, etc.. 2.run one of the following. Automated install (Linux/Unix/MacOS/FreeBSD/OpenBSD) To install with curl run the following command: curl -s -S -L https://raw.githubusercontent.com/AdguardTeam/AdGuardHome/master/scripts/install.sh | sh -s -- -v To install with wget run the following command: wget --no-verbose -O - https://raw.githubusercontent.com/AdguardTeam/AdGuardHome/master/scripts/install.sh | sh -s -- -v To install with fetch run the following command: fetch -o - https://raw.githubusercontent.com/AdguardTeam/AdGuardHome/master/scripts/install.sh | sh -s -- -v The script also accepts some options: -c <channel> to use specified channel; -r to reinstall AdGuard Home; -u to uninstall AdGuard Home; -v for verbose output.
-
From portainer open stacks and add the below. Modify IP's of adguard servers. If adguard won't spin up you need to disable the host systemd-resolved sudo systemctl disable systemd-resolved.service sudo systemctl stop systemd-resolved --- version: "2.1" services: adguardhome-sync: image: quay.io/bakito/adguardhome-sync container_name: adguardhome-sync command: run environment: - ORIGIN_URL=http://192.168.1.26:85 #change as necessary - ORIGIN_USERNAME=dbtech #change as necessary - ORIGIN_PASSWORD=password #change as necessary - REPLICA_URL=http://192.168.1.27 #change as necessary - REPLICA_USERNAME=dbtech #change as necessary - REPLICA_PASSWORD=password #change as necessary - REPLICA1_URL=http://192.168.1.4 #change as necessary - REPLICA1_USERNAME=username #change as necessary - REPLICA1_PASSWORD=password #change as necessary - CRON=*/1 * * * * # run every 1 minute - RUNONSTART=true ports: - 8080:8080 #change as necessary restart: unless-stopped ################ # # Original Source: # https://github.com/bakito/adguardhome-sync # ################