15 lines
346 B
YAML
15 lines
346 B
YAML
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:
|
|
- /YOUR/PATH/HERE/config.json:/config.json
|
|
restart: unless-stopped
|