Skip to content

Instantly share code, notes, and snippets.

@dnburgess
Last active October 25, 2023 19:29
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dnburgess/5c450ff4d5d59525344e31ebf5421e91 to your computer and use it in GitHub Desktop.
Save dnburgess/5c450ff4d5d59525344e31ebf5421e91 to your computer and use it in GitHub Desktop.
DB Tech AdguardHome-Sync
---
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
#
################
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment