Docker build of a Cloudflare DDNS client using their example code
Go to file
IamTheFij b5e99939fb
continuous-integration/drone/push Build is failing Details
Back to alpine. This is dumb
2021-01-20 18:21:40 -08:00
.dockerignore Working commit 2019-03-05 11:16:45 -08:00
.drone.yml Fix drone builds on tags 2021-01-20 17:03:07 -08:00
.gitignore Add multiarch building from Drone 2019-03-10 18:09:12 -07:00
Dockerfile Back to alpine. This is dumb 2021-01-20 18:21:40 -08:00
LICENSE Initial commit 2019-03-05 19:15:08 +00:00
Makefile Copy all qemu files because drone is being weird 2020-01-30 11:57:28 -08:00
README.md Add repo links to README.md 2020-02-22 07:54:19 -08:00
manifest.tmpl Add multiarch building from Drone 2019-03-10 18:09:12 -07:00

README.md

Docker Cloudfare DDNS

Simple Docker image that wraps an example script to dynamically update a Cloudflare DNS record.

Usage

There are two things to configure. First, the domain that you wish to update needs to be provided as a command line argument. This can be done by adding it to the end of your run command (example in the Makefile) or by adding it as a command to your compose file. Eg:

ddns:
  image: IamTheFij/cloudflare-ddns
  command: ["example.com"]

Your Cloudflare credentials can be passed in any way that python-cloudflare allows. Generally, either via envioronment variables:

CF_API_EMAIL=admin@example.com  # Do not set if using an API Token
CF_API_KEY=00000000000000000000
CF_API_CERTKEY='v1.0-...'

Or by providing a file mounted to the working directory in the image, /src/.cloudflare.cfg that contains something like:

[CloudFlare]
emal = admin@example.com  # Do not set if using an API Token
token = 00000000000000000000
certtoken = v1.0-...

Then run. To execute from this directory, you can use the convenient Make target.

make run

Source

Original source: https://git.iamthefij.com/iamthefij/docker-cloudflare-ddns

Github mirror: https://github.com/iamthefij/docker-cloudflare-ddns