mirror of
https://github.com/technorabilia/docker-bits
synced 2024-11-14 18:12:47 +00:00
15 lines
750 B
Bash
15 lines
750 B
Bash
# [Adguardhome-sync](https://github.com/bakito/adguardhome-sync/) is a tool to
|
|
# synchronize AdGuardHome config to replica instances.
|
|
|
|
. ./.env
|
|
docker run -d \
|
|
--name=adguardhome-sync \
|
|
-e PUID=${PUID:-1024} `# for UserID` \
|
|
-e PGID=${PGID:-100} `# for GroupID` \
|
|
-e TZ=${TZ:-Europe/Amsterdam} `# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).` \
|
|
-e CONFIGFILE=/config/adguardhome-sync.yaml `# optional` `# Set a custom config file.` \
|
|
-p 8080:8080 `# Port for AdGuardHome Sync's web API.` \
|
|
-v ${BASEDIR:-/volume1/docker}/adguardhome-sync/config:/config `# Contains all relevant configuration files.` \
|
|
--restart unless-stopped \
|
|
ghcr.io/linuxserver/adguardhome-sync
|