docker pull timothyjmiller/cloudflare-ddns
docker run -d --name cloudflare-ddns timothyjmiller/cloudflare-ddns:latest
docker compose up -d
version: '3.9'
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:
- /YOUR/PATH/HERE/config.json:/config.json
restart: unless-stopped