mirror of
https://github.com/technorabilia/docker-bits
synced 2024-11-10 13:10:31 +00:00
24 lines
857 B
YAML
24 lines
857 B
YAML
# [Ddclient](https://github.com/ddclient/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 UserID
|
|
- PUID=${PUID:-1024}
|
|
# for GroupID
|
|
- PGID=${PGID:-100}
|
|
# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).
|
|
- TZ=${TZ:-Europe/Amsterdam}
|
|
volumes:
|
|
# Persistent config files
|
|
- ${BASEDIR:-/volume1/docker}/ddclient/config:/config
|
|
restart: unless-stopped
|