mirror of
https://github.com/qdm12/ddns-updater.git
synced 2026-08-02 02:28:40 -04:00
22 lines
466 B
YAML
22 lines
466 B
YAML
version: "3.7"
|
|
services:
|
|
ddns-updater:
|
|
image: qmcgaw/ddns-updater
|
|
container_name: ddns-updater
|
|
network_mode: bridge
|
|
ports:
|
|
- 8000:8000/tcp
|
|
volumes:
|
|
- ./data:/updater/data
|
|
environment:
|
|
- DELAY=300s
|
|
- ROOT_URL=/
|
|
- LISTENING_PORT=8000
|
|
- LOG_ENCODING=console
|
|
- LOG_LEVEL=info
|
|
- NODE_ID=0
|
|
- HTTP_TIMEOUT=10s
|
|
- GOTIFY_URL=
|
|
- GOTIFY_TOKEN=
|
|
restart: always
|