Sign inSign up

kenpoh/rpi-ddclient

By kenpoh

Updated almost 8 years ago

Dynamic DNS updater for the ARM based Raspberry PI based on netzfisch/rpi-dyndns

Image
1

1.3K

kenpoh/rpi-ddclient repository overview

Dynamic DNS updater for the ARM based Raspberry PI.

v1 image is based on netzfisch v2 image is based on hypriot/rpi-alpine 3.6

The original from netzfisch uses spdns.de in the original config but I modified mine to allow additional parameters to be passed in at runtime

To run it...

docker run --detach \
             --name ddclient \
             --restart unless-stopped \
             -e LOGIN=<username> \
             -e PASSWORD=<password> \
             -e HOSTNAME=<yourdomain> \
             -e CHECKIPURL=<ipCheckingURL> \
             -e SERVER=<serverURL> \
             kenpoh/rpi-ddclient:v2

As an example for dyndns.org, checkipurl is checkip.dyndns.org and server URL is members.dyndns.org

This also allows the use of composer style configuration such as below

  ddclient:
    container_name: ddclient
    image: kenpoh/rpi-ddclient:v2
    environment:
      - HOSTNAME=yourdomain
      - LOGIN=yourusername
      - PASSWORD=yourpassword
      - SERVER=members.dyndns.org
      - CHECKIPURL=checkip.dyndns.org
    restart: unless-stopped

Tag summary

Content type

Image

Digest

Size

11.1 MB

Last updated

almost 8 years ago

docker pull kenpoh/rpi-ddclient:v2