Home Deploy Clouflare DDNS on Docker
Post
Cancel

Deploy Clouflare DDNS on Docker

Docker Compose to install Cloudflare Dynamic Dns on your server

1
2
3
4
5
6
7
8
9
10
11
12
version: '2'
services:
  cloudflare-ddns:
    image: oznu/cloudflare-ddns:latest
    restart: always
    environment:
      - API_KEY=**************************
      - ZONE=example.com
      - PROXIED=true
      - PUID=1000
      - PGID=100

This post is licensed under CC BY 4.0 by the author.