Files
nsupdate/docker/docker-compose.yml
Christian Busch ad365339b0
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 33s
Docker: Support for setting cron schedule, PUID, GUID and time zone via env vars.
2026-04-26 22:43:51 +02:00

17 lines
517 B
YAML
Executable File

services:
nsupdate:
image: git.debilux.org/chris/nsupdate:latest
container_name: nsupdate
restart: unless-stopped
environment:
- PUID=1000 # (default: 1000)
- PGID=1000 # (default: 1000)
- VERBOSE=false
- DEBUG=false
- SCHEDULE=*/2 * * * * (default: * * * * *)
- TZ=Europe/Berlin # (default: Etc/UTC)
- NSUPDATE_INWX_USER=${NSUPDATE_INWX_USER}
- NSUPDATE_INWX_PASSWORD=${NSUPDATE_INWX_PASSWORD}
volumes:
- ./config:/config
- ./log:/log