mirror of
https://github.com/aljazceru/addons.git
synced 2026-01-20 05:16:03 +01:00
* duckdns: Prettier YAML files * duckdns: Sort build.json * duckdns: Update add-on URL * duckdns: Remove curl from Dockerfile, part of base image * duckdns: Small style change to Dockerfile * duckdns: Documents missing ipv4 & ipv6 options
35 lines
843 B
JSON
35 lines
843 B
JSON
{
|
|
"name": "Duck DNS",
|
|
"version": "1.10",
|
|
"slug": "duckdns",
|
|
"description": "Free Dynamic DNS (DynDNS or DDNS) service with Let's Encrypt support",
|
|
"url": "https://github.com/home-assistant/hassio-addons/tree/master/duckdns",
|
|
"arch": ["armhf", "armv7", "aarch64", "amd64", "i386"],
|
|
"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"
|
|
},
|
|
"ipv4": "str?",
|
|
"ipv6": "str?",
|
|
"token": "str",
|
|
"domains": ["str"],
|
|
"seconds": "int"
|
|
},
|
|
"image": "homeassistant/{arch}-addon-duckdns"
|
|
}
|