mirror of
https://github.com/Haxxnet/Compose-Examples
synced 2024-11-24 04:21:14 +00:00
20 lines
661 B
YAML
20 lines
661 B
YAML
services:
|
|
|
|
cloudflare-ddns:
|
|
image: favonia/cloudflare-ddns:latest
|
|
container_name: cloudflare-ddns
|
|
#network_mode: host
|
|
restart: always
|
|
user: "1000:1000"
|
|
cap_drop:
|
|
- all
|
|
read_only: true
|
|
security_opt:
|
|
- no-new-privileges:true
|
|
environment:
|
|
- CF_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
|
|
- IP6_PROVIDER=none # disbale IPv6
|