mirror of
https://github.com/Sebclem/hassio-nextcloud-backup.git
synced 2024-11-05 00:52:59 +01:00
38 lines
1005 B
JSON
38 lines
1005 B
JSON
{
|
|
"name": "Nextcloud Backup",
|
|
"version": "dev",
|
|
"slug": "nextcloud_backup",
|
|
"description": "Addon that backup your snapshot to a Nextcloud server",
|
|
"url": "https://github.com/hassio-addons/addon-example",
|
|
"webui": "[PROTO:ssl]://[HOST]:[PORT:3000]/",
|
|
"ingress": true,
|
|
"ingress_port": 3000,
|
|
"startup": "application",
|
|
"arch": [
|
|
"aarch64",
|
|
"amd64",
|
|
"armhf",
|
|
"armv7",
|
|
"i386"
|
|
],
|
|
"boot": "auto",
|
|
"hassio_api": true,
|
|
"hassio_role": "backup",
|
|
"options": {
|
|
"ssl": false,
|
|
"certfile": "fullchain.pem",
|
|
"keyfile": "privkey.pem"
|
|
},
|
|
"schema": {
|
|
"log_level": "match(^(trace|debug|info|notice|warning|error|fatal)$)?",
|
|
"ssl": "bool",
|
|
"certfile": "str",
|
|
"keyfile": "str",
|
|
"leave_front_door_open": "bool?"
|
|
},
|
|
"ports": {
|
|
"3000/tcp": 3000,
|
|
"9226/tcp": 9226
|
|
},
|
|
"image" : "sebclemhassaddon/{arch}-hassio-nextcloud-backup"
|
|
} |