mirror of
https://github.com/aljazceru/addons.git
synced 2026-01-30 02:05:52 +01:00
42 lines
931 B
JSON
42 lines
931 B
JSON
{
|
|
"name": "Samba share",
|
|
"version": "1.0",
|
|
"slug": "samba",
|
|
"description": "Expose HassIO folders with Samba",
|
|
"url": "https://home-assistant.io/addons/samba/",
|
|
"startup": "before",
|
|
"boot": "auto",
|
|
"ports": {
|
|
"445/tcp": 445,
|
|
"137/udp": 137,
|
|
"138/udp": 138,
|
|
"139/tcp": 139
|
|
},
|
|
"map": ["config:rw", "ssl:rw", "addons:rw", "share:rw", "backup:rw"],
|
|
"options": {
|
|
"workgroup": "WORKGROUP",
|
|
"name": "hassio",
|
|
"guest": true,
|
|
"map_config": true,
|
|
"map_addons": true,
|
|
"map_ssl": false,
|
|
"map_share": true,
|
|
"map_backup": true,
|
|
"username": "",
|
|
"password": ""
|
|
},
|
|
"schema": {
|
|
"workgroup": "str",
|
|
"name": "str",
|
|
"guest": "bool",
|
|
"map_config": "bool",
|
|
"map_addons": "bool",
|
|
"map_ssl": "bool",
|
|
"map_share": "bool",
|
|
"map_backup": "bool",
|
|
"username": "str",
|
|
"password": "str"
|
|
},
|
|
"image": "homeassistant/{arch}-addon-samba"
|
|
}
|