mirror of
https://github.com/technorabilia/docker-bits
synced 2024-11-05 00:00:32 +00:00
26 lines
804 B
YAML
26 lines
804 B
YAML
# [Adguardhome-sync](https://github.com/bakito/adguardhome-sync/) is a tool to
|
|
# synchronize AdGuardHome config to replica instances.
|
|
|
|
---
|
|
version: "2.1"
|
|
services:
|
|
adguardhome-sync:
|
|
image: ghcr.io/linuxserver/adguardhome-sync
|
|
container_name: adguardhome-sync
|
|
environment:
|
|
# for GroupID
|
|
- PUID=${PUID:-1024}
|
|
# for UserID
|
|
- PGID=${PGID:-100}
|
|
# Specify a timezone to use for example Europe/Amsterdam
|
|
- TZ=${TZ:-Europe/Amsterdam}
|
|
# Set a custom config file.
|
|
- CONFIGFILE=/config/adguardhome-sync.yaml # optional
|
|
volumes:
|
|
# Contains all relevant configuration files.
|
|
- ${BASEDIR:-/volume1/docker}/adguardhome-sync/config:/config
|
|
ports:
|
|
# Port for AdGuardHome Sync's web API.
|
|
- 8080:8080
|
|
restart: unless-stopped
|