Title logo
linuxserver/adguardhome-sync.

221,854 45 arm64 amd64

Build Information

General build information for this image

Docker Hub linuxserver/adguardhome-sync
Build Time 22 Apr 2024 12:57:18
Base Image lsiobase/alpine:3.13
Synchronised Yes
Stable Yes
Deprecated No

Support Information

External links and support

Tracked Tags

Known tags which link to a specific branched app version.

Branch Version Built
latest 0.6.9 22 Apr 2024 at 12:57:18

Daily Pull Statistics

Running this as a container

Basic examples for getting this image running as a container

Docker Compose

---
version: "2"
services:
  adguardhome-sync:
    image: linuxserver/adguardhome-sync:0.6.9
    container_name: adguardhome-sync
    restart: unless-stopped
    environment:
      - TZ=Europe/London # Specify a timezone to use
      - PUID=1000 # User ID to run as 
      - PGID=1000 # Group ID to run as
      - CONFIGFILE=/config/adguardhome-sync.yaml # Optional - Set a custom config file.
    volumes:
      - /host/path/to/config:/config # Contains all relevant configuration files.
    ports:
      - 8080:8080/tcp # Web API

CLI

docker create \
  --name=adguardhome-sync \
  -e TZ=Europe/London `# Specify a timezone to use` \
  -e PUID=1000 `# User ID to run as ` \
  -e PGID=1000 `# Group ID to run as` \
  -e CONFIGFILE=/config/adguardhome-sync.yaml `# Optional - Set a custom config file.` \
  -v /host/path/to/config:/config `# Contains all relevant configuration files.` \
  -p 8080:8080/tcp `# Web API` \
  --restart unless-stopped \
  linuxserver/adguardhome-sync:0.6.9