hassio-nextcloud-backup/nextcloud_backup/config.json

47 lines
1.2 KiB
JSON
Raw Normal View History

2019-12-19 15:08:47 +01:00
{
"name": "Nextcloud Backup",
2020-09-16 10:20:03 +02:00
"version": "dev",
2019-12-19 15:08:47 +01:00
"slug": "nextcloud_backup",
2020-10-12 15:54:12 +02:00
"description": "Easily backup your Home Assistant snapshots to Nextcloud",
"url": "https://github.com/Sebclem/hassio-nextcloud-backup",
2019-12-19 15:08:47 +01:00
"webui": "[PROTO:ssl]://[HOST]:[PORT:3000]/",
"ingress": true,
"ingress_port": 3000,
2020-01-10 21:52:49 +01:00
"panel_icon": "mdi:cloud-upload",
"panel_title": "NC Backup",
"panel_admin": true,
2019-12-19 15:08:47 +01:00
"startup": "application",
"stage": "experimental",
2019-12-19 15:08:47 +01:00
"arch": [
"aarch64",
"amd64",
"armhf",
"armv7",
"i386"
],
"boot": "auto",
"hassio_api": true,
"hassio_role": "manager",
"homeassistant_api": true,
2019-12-19 15:08:47 +01:00
"options": {
"ssl": false,
"certfile": "fullchain.pem",
"keyfile": "privkey.pem"
},
"schema": {
2019-12-29 18:40:54 +01:00
"log_level": "match(^(trace|debug|info|notice|warning|error|fatal)$)?",
"ssl": "bool",
"certfile": "str",
"keyfile": "str",
"leave_front_door_open": "bool?"
2019-12-19 15:08:47 +01:00
},
"ports": {
2020-01-10 21:52:49 +01:00
"3000/tcp": null,
"9226/tcp": null
},
"ports_description": {
"3000/tcp": "Web interface (Not required for Hass.io Ingress)",
"9226/tcp": "NodeJS Debuger"
2020-03-11 10:18:24 +01:00
}
}