Skip to content

Cloudflare DDNS

Description⚓︎

This small Alpine Linux based Docker image by Oznu will allow you to use the free CloudFlare DNS Service as a Dynamic DNS Provider (DDNS).

Docker⚓︎

Basic info⚓︎

Basic info with official links

docker-compose.yml⚓︎

YAML
---
version: '2'
services:
  cloudflare-ddns:
    image: oznu/cloudflare-ddns:latest
    container_name: cflare-ddns
    networks:
      - proxy # rename this to your custom docker network
    restart: always
    environment:
      - API_KEY=$CF_DDNS_API
      - ZONE=$CF_CLOUD_DOMAIN
      - SUBDOMAIN=$CF_DDNS_HOME
      - PROXIED=false

networks:
  proxy:    # rename this to your custom docker network.
    external: true

deploy.sh⚓︎

Bash
docker compose up -d