Last active
October 25, 2023 19:29
-
-
Save dnburgess/5c450ff4d5d59525344e31ebf5421e91 to your computer and use it in GitHub Desktop.
DB Tech AdguardHome-Sync
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
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