From 5483342f584debb1e90c845de80c703528c354d0 Mon Sep 17 00:00:00 2001 From: tiamilani Date: Tue, 28 Jan 2025 14:44:45 +0100 Subject: [PATCH] Update docker-compose.yml deprecated env variable The variable CF_API_TOKEN will be deprecated in version 2.0.0 in favor of CLOUDFLARE_API_TOKEN. --- examples/cloudflare-ddns/docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/cloudflare-ddns/docker-compose.yml b/examples/cloudflare-ddns/docker-compose.yml index adccde8..1a40780 100644 --- a/examples/cloudflare-ddns/docker-compose.yml +++ b/examples/cloudflare-ddns/docker-compose.yml @@ -12,7 +12,7 @@ services: security_opt: - no-new-privileges:true environment: - - CF_API_TOKEN=YOUR-CLOUDFLARE-API-TOKEN # pls adjust + - CLOUDFLARE_API_TOKEN=YOUR-CLOUDFLARE-API-TOKEN # pls adjust - DOMAINS=example.org,www.example.org,example.io # pls adjust; a list of fully qualified domain names separated by commas - PROXIED=false # if true, instructs Cloudflare to cache webpages on your machine and hide its actual IP addresses - TZ=Europe/Berlin