From dff01cc72e8327faf4617660f6d1895f13f72181 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaros=C5=82aw=20Karcewicz?= Date: Fri, 9 Sep 2022 11:22:16 +0200 Subject: [PATCH] . --- .../adguardhome-sync/adguardsync.yml | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 docker-compose/adguardhome-sync/adguardsync.yml diff --git a/docker-compose/adguardhome-sync/adguardsync.yml b/docker-compose/adguardhome-sync/adguardsync.yml new file mode 100644 index 0000000..49bdd8d --- /dev/null +++ b/docker-compose/adguardhome-sync/adguardsync.yml @@ -0,0 +1,23 @@ +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.2:1080 # adres kontenera z AdguardHome numer 1 + - ORIGIN_USERNAME=admin # login do AdguardHome numer 1 + - ORIGIN_PASSWORD=MojeHasloDoAdguardHome1 #haslo na dostepowe w AdguardHome numer 1 + - REPLICA_URL=http://192.168.1.3:3000 # adres kontenera z AdguardHome numer 2 + - REPLICA_USERNAME=admin # login do AdguardHome numer 2 + - REPLICA_PASSWORD=MojeHasloDoAdguardHome2 #haslo na dostepowe w AdguardHome numer 2 + - CRON=*/10 * * * * # uruchamianie synchronizacji co 10 minut + - RUNONSTART=true + ports: + - 8100:8080 + restart: unless-stopped + + ############ + ## Wiecej informacji: + ## https://github.com/bakito/adguardhome-sync + ############