mirror of
https://github.com/aljazceru/addons.git
synced 2026-02-18 11:24:24 +01:00
* Initial Let's Encrypt + DuckDNS * Remove letsencrypt_duckdns * Add cert generation with lets encrypt to DuckDNS * Add that you have to accept terms * Update Dockerfile * Delete dehydrated.sh * Update Dockerfile * Update config.json * Update run.sh * Update hooks.sh * Update run.sh * Update hooks.sh * Update run.sh * Update config.json * Update hooks.sh * Update Dockerfile * Update run.sh * fix renew timer * Update run.sh * fix logic
32 lines
691 B
JSON
32 lines
691 B
JSON
{
|
|
"name": "Duck DNS",
|
|
"version": "1.0",
|
|
"slug": "duckdns",
|
|
"description": "Free Dynamic DNS (DynDNS or DDNS) service",
|
|
"url": "https://home-assistant.io/addons/duckdns/",
|
|
"startup": "services",
|
|
"boot": "auto",
|
|
"map": ["ssl:rw"],
|
|
"options": {
|
|
"lets_encrypt": {
|
|
"accept_terms": false,
|
|
"certfile": "fullchain.pem",
|
|
"keyfile": "privkey.pem"
|
|
},
|
|
"token": null,
|
|
"domains": [null],
|
|
"seconds": 300
|
|
},
|
|
"schema": {
|
|
"lets_encrypt": {
|
|
"accept_terms": "bool",
|
|
"certfile": "str",
|
|
"keyfile": "str"
|
|
},
|
|
"token": "str",
|
|
"domains": ["str"],
|
|
"seconds": "int"
|
|
},
|
|
"image": "homeassistant/{arch}-addon-duckdns"
|
|
}
|