You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
781 B
YAML

# Ddclient is a Perl client used to update dynamic DNS entries for accounts on
# Dynamic DNS Network Service Provider. It was originally written by Paul Burry
# and is now mostly by wimpunk. It has the capability to update more than just
# dyndns and it can fetch your WAN-ipaddress in a few different ways.
---
version: "2.1"
services:
ddclient:
image: ghcr.io/linuxserver/ddclient
container_name: ddclient
environment:
# for GroupID
- PUID=${PUID:-1024}
# for UserID
- PGID=${PGID:-100}
# Specify a timezone to use for example Europe/Amsterdam
- TZ=${TZ:-Europe/Amsterdam}
volumes:
# Where ddclient should store its config files.
- ${BASEDIR:-/volume1/docker}/ddclient/config:/config
restart: unless-stopped