mirror of
https://github.com/jkocon/hassio-addons.git
synced 2026-02-24 05:14:41 +01:00
41 lines
1.0 KiB
JSON
41 lines
1.0 KiB
JSON
{
|
|
"name": "Hass backup S3",
|
|
"version": "0.0.3",
|
|
"slug": "hass_backup_s3",
|
|
"description": "Backup your snapshots to S3 compatible object storage with local encryption and lifecycle policies",
|
|
"arch": ["armhf", "armv7", "aarch64", "amd64", "i386"],
|
|
"startup": "application",
|
|
"boot": "manual",
|
|
"icon": "ico.png",
|
|
"logo": "ico.png",
|
|
"map": ["backup:rw", "media:rw", "ssl:rw"],
|
|
"init": false,
|
|
"apparmor": true,
|
|
"options": {
|
|
"sourceDir": "/backup",
|
|
"bucketName": "myBucketName",
|
|
"endpointUrl": "https://s3.fr-par.scw.cloud",
|
|
"region": "fr-par",
|
|
"accessKey": null,
|
|
"secretKey": null,
|
|
"GPGFingerprint": "",
|
|
"GPGPassphrase":"",
|
|
"incrementalFor": "7D",
|
|
"removeOlderThan":"14D",
|
|
"restore": false
|
|
},
|
|
"schema": {
|
|
"sourceDir": "str",
|
|
"bucketName": "str",
|
|
"endpointUrl": "str",
|
|
"region": "str",
|
|
"accessKey": "str?",
|
|
"secretKey": "str?",
|
|
"GPGFingerprint": "str?",
|
|
"GPGPassphrase": "str?",
|
|
"incrementalFor": "str?",
|
|
"removeOlderThan": "str?",
|
|
"restore": "bool"
|
|
}
|
|
}
|