Skip to content

Instantly share code, notes, and snippets.

@robherley
Created December 19, 2021 23:19
Show Gist options
  • Save robherley/483f91feb4d3183182fd2ba6c24a50ae to your computer and use it in GitHub Desktop.
Save robherley/483f91feb4d3183182fd2ba6c24a50ae to your computer and use it in GitHub Desktop.
DDNS Config
{
"cloudflare": [
{
"authentication": {
"api_token": "<omitted>"
},
"zone_id": "<omitted>",
"subdomains": ["*"],
"proxied": false
}
],
"a": true,
"aaaa": false
}
version: "3.7"
services:
cloudflare-ddns:
image: timothyjmiller/cloudflare-ddns:latest
container_name: cloudflare-ddns
security_opt:
- no-new-privileges:true
network_mode: "host"
environment:
- PUID=1000
- PGID=1000
volumes:
- ./config.json:/config.json
restart: unless-stopped
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment