fix: mark the API token env as required, and other env as configurable from the UI
Update templates/compose/cloudflare-ddns.yaml Co-authored-by: ShadowArcanist <162910371+ShadowArcanist@users.noreply.github.com>
This commit is contained in:
parent
90449d2bb5
commit
96b9cd3fa5
1 changed files with 3 additions and 3 deletions
|
|
@ -13,7 +13,7 @@ services:
|
||||||
cap_drop: [all]
|
cap_drop: [all]
|
||||||
security_opt: [no-new-privileges:true]
|
security_opt: [no-new-privileges:true]
|
||||||
environment:
|
environment:
|
||||||
- CLOUDFLARE_API_TOKEN=${CLOUDFLARE_API_TOKEN}
|
- CLOUDFLARE_API_TOKEN=${CLOUDFLARE_API_TOKEN:?}
|
||||||
- DOMAINS=${DOMAINS}
|
- DOMAINS=${DOMAINS}
|
||||||
- PROXIED=false
|
- PROXIED=${PROXIED:-false}
|
||||||
- IP6_PROVIDER=none
|
- IP6_PROVIDER=${IP6_PROVIDER:-none}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue