From ab6ff63efd1c4dcb1806dd7b00d10f9c55c5f5f6 Mon Sep 17 00:00:00 2001 From: ryuupendragon Date: Wed, 30 Jul 2025 22:04:57 +0530 Subject: [PATCH] Unarchive and update adguardhome-sync --- .archived/adguardhome-sync/docker-compose.yml | 22 ------------------- adguardhome-sync/docker-compose.yml | 19 ++++++++++++++++ 2 files changed, 19 insertions(+), 22 deletions(-) delete mode 100644 .archived/adguardhome-sync/docker-compose.yml create mode 100644 adguardhome-sync/docker-compose.yml diff --git a/.archived/adguardhome-sync/docker-compose.yml b/.archived/adguardhome-sync/docker-compose.yml deleted file mode 100644 index b910924..0000000 --- a/.archived/adguardhome-sync/docker-compose.yml +++ /dev/null @@ -1,22 +0,0 @@ -# Docker Compose configuration for AdGuardHome Sync service - -services: - adguardhome-sync: - # Basic container configuration - container_name: adguardhome-sync - image: docker.io/linuxserver/adguardhome-sync:0.7.6 - restart: unless-stopped - - # Environment configuration - environment: - - PUID=${PUID} # User ID for the container - - PGID=${PGID} # Group ID for the container - - TZ=${TZ} # Timezone - - # Persistent storage configuration - volumes: - - ${CONFIG_PATH}:/config # Maps host config directory to container - - # Network port configuration - ports: - - ${PORT}:8080 # Web interface port diff --git a/adguardhome-sync/docker-compose.yml b/adguardhome-sync/docker-compose.yml new file mode 100644 index 0000000..634a32c --- /dev/null +++ b/adguardhome-sync/docker-compose.yml @@ -0,0 +1,19 @@ +services: + adguardhome-sync: + container_name: adguardhome-sync + image: ghcr.io/bakito/adguardhome-sync:alpine-v0.7.8 + restart: unless-stopped + command: run + environment: + - ORIGIN_URL=${ORIGIN_URL} + - ORIGIN_USERNAME=${ORIGIN_USERNAME} + - ORIGIN_PASSWORD=${ORIGIN_PASSWORD} + + - REPLICA_URL=${REPLICA_URL} + - REPLICA_USERNAME=${REPLICA_USERNAME} + - REPLICA_PASSWORD=${REPLICA_PASSWORD} + + - CRON=${CRON} + - RUN_ON_START=${RUN_ON_START} + ports: + - ${PORT}:8080