Golang based tool to maintain Cloudflare Dynamic DNS for your sites.
Go to file
James Tombleson b6b7b14388 moved from alpine to debian 2023-05-28 15:38:52 -07:00
.github/workflows initial build 2022-08-17 16:58:45 +00:00
.gitignore initial build 2022-08-17 16:58:45 +00:00
Dockerfile moved from alpine to debian 2023-05-28 15:38:52 -07:00
README.md initial build 2022-08-17 16:58:45 +00:00
cloudflare.go sending now a patch request to update the IP 2022-08-19 21:35:44 +00:00
config.go updated logic to allow yaml configs 2023-05-28 15:37:38 -07:00
cron.go updated logic to allow yaml configs 2023-05-28 15:37:38 -07:00
docker-compose.yaml initial build 2022-08-17 16:58:45 +00:00
go.mod added yaml package 2023-05-28 15:38:04 -07:00
go.sum updated logic to allow yaml configs 2023-05-28 15:37:38 -07:00
main.go updated logic to allow yaml configs 2023-05-28 15:37:38 -07:00

README.md

cloudflare-ddns

Golang based tool to maintain Cloudflare Dynamic DNS for your sites. Run this locally or as a Docker image.

When the application starts, it will run every 15 minutes and check your defined hosts and compare the IP Address listed. If they dont match, it will be updated to refect the public IP address of the server its running from.

This does not have any UI elements so you need to check the logs to se how its going.

Usage

# docker-compose.yaml
version: "3"
    
services:
  app:
    image: ghcr.io/jtom38/cloudflare-ddns:master
    container_name: cfddns
    environment:
      EMAIL: "yourcloudflareemailaddress"
      API_TOKEN: "cloudflare-api-key"
      DOMAIN: "exampledomain.com"
      HOSTS: "example1,example2,www"

Credit

The original post that gave me this idea can be found here. This was written in PowerShell and thought I could improve on it with Go and Docker.