24 lines
651 B
YAML
24 lines
651 B
YAML
services:
|
|
adguardhome-sync:
|
|
container_name: adguardhome-sync
|
|
image: ghcr.io/bakito/adguardhome-sync
|
|
command: run --config /config/adguardhome-sync.yaml
|
|
environment:
|
|
LOG_LEVEL: info
|
|
ORIGIN_URL: http://192.168.1.2:80
|
|
ORIGIN_USERNAME: akanealw
|
|
ORIGIN_PASSWORD: Aehaigoothohshoh1aab
|
|
REPLICA1_URL: http://192.168.1.3:80
|
|
REPLICA1_USERNAME: akanealw
|
|
REPLICA1_PASSWORD: Aehaigoothohshoh1aab
|
|
CRON: "*/30 * * * *"
|
|
RUN_ON_START: true
|
|
CONTINUE_ON_ERROR: true
|
|
networks:
|
|
- reverse-proxy
|
|
restart: always
|
|
|
|
networks:
|
|
reverse-proxy:
|
|
name: reverse-proxy
|
|
external: true |