Sync AdGuardHome configuration to replica instances.
services:
adguardhome-sync:
image: ghcr.io/daemonless/adguardhome-sync:latest
container_name: adguardhome-sync
environment:
- PUID=1000
- PGID=1000
- TZ=UTC
volumes:
- /path/to/containers/adguardhome-sync:/config
ports:
- 8080:8080
restart: unless-stopped
podman run -d --name adguardhome-sync \
-p 8080:8080 \
-e PUID=@PUID@ \
-e PGID=@PGID@ \
-e TZ=@TZ@ \
-v /path/to/containers/adguardhome-sync:/config \
ghcr.io/daemonless/adguardhome-sync:latest
Access at: http://localhost:8080
- name: Deploy adguardhome-sync
containers.podman.podman_container:
name: adguardhome-sync
image: ghcr.io/daemonless/adguardhome-sync:latest
state: started
restart_policy: always
env:
PUID: "@PUID@"
PGID: "@PGID@"
TZ: "@TZ@"
ports:
- "8080:8080"
volumes:
- "/path/to/containers/adguardhome-sync:/config"
| Variable |
Default |
Description |
PUID |
1000 |
User ID for the application process |
PGID |
1000 |
Group ID for the application process |
TZ |
UTC |
Timezone for the container |
| Path |
Description |
/config |
Configuration directory |
| Port |
Protocol |
Description |
8080 |
TCP |
Metrics/API |
- Architectures: amd64
- User:
bsd (UID/GID set via PUID/PGID)
- Base: Built on
ghcr.io/daemonless/base (FreeBSD)