Created
December 19, 2021 23:19
-
-
Save robherley/483f91feb4d3183182fd2ba6c24a50ae to your computer and use it in GitHub Desktop.
DDNS Config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"cloudflare": [ | |
{ | |
"authentication": { | |
"api_token": "<omitted>" | |
}, | |
"zone_id": "<omitted>", | |
"subdomains": ["*"], | |
"proxied": false | |
} | |
], | |
"a": true, | |
"aaaa": false | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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