25 lines
582 B
YAML
25 lines
582 B
YAML
services:
|
|
ddns-updater:
|
|
image: ghcr.io/qdm12/ddns-updater:latest@sha256:9313e1c31f366c89dc0819e5eff85576cb23821424c0c267fa66cfa39aabde83
|
|
container_name: ddns-updater
|
|
restart: unless-stopped
|
|
security_opt:
|
|
- no-new-privileges:true
|
|
networks:
|
|
- frontend_net
|
|
environment:
|
|
TZ: Europe/Berlin
|
|
PERIOD: 5m
|
|
SERVER_ENABLED: "yes"
|
|
LISTENING_ADDRESS: ":8000"
|
|
LOG_LEVEL: info
|
|
volumes:
|
|
- /mnt/user/appdata/ddns-updater:/updater/data
|
|
dns:
|
|
- 1.1.1.1
|
|
- 8.8.8.8
|
|
|
|
networks:
|
|
frontend_net:
|
|
external: true
|