Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 1.02 KB

README.md

File metadata and controls

29 lines (23 loc) · 1.02 KB

matthewhuie/ddclient

This is a Docker container that provides a lightweight and generic ddclient instance, based on Alpine Linux. It provides the latest version of ddclient, running on the edge version of Alpine Linux. This repository currently builds for multi-arch: ARMv7, ARM64, and AMD64.

buildx

Getting Started

Pull the image from Docker Hub.

docker pull matthewhuie/ddclient

Create and start a container. For example, use default ddclient.conf, and run detached.

docker run -d matthewhuie/ddclient

Keep in mind, this is a barebones instance of ddclient, allowing more flexibility on how the image can be used.

For example, an existing ddclient.conf could be used.

docker run -d \
  -v /etc/ddclient.conf:/etc/ddclient/ddclient.conf:ro \
  matthewhuie/ddclient

Links