.env/
├─ providers.json
├─ database.db
providers.json
{
"Providers": [
{
"Provider": "OvhProvider",
"Domain": "example.com",
"SubDomain": "www",
"Secret": "<secret>"
}
]
}
database.db will be generated automatically
version: '3.4'
services:
open-ddns-host:
image: ghcr.io/sonquer/open-ddns:main
volumes:
- ./.env:/config/
ports:
- "5005:80"
docker-compose up -d