mirror of
https://github.com/hassio-addons/repository.git
synced 2025-05-06 20:21:26 +00:00
🎉 Release of add-on SSH v2.0.0
This commit is contained in:
parent
7e6b5e0881
commit
688e4a9720
1 changed files with 12 additions and 6 deletions
|
@ -1,13 +1,14 @@
|
|||
{
|
||||
"name": "SSH - Secure Shell",
|
||||
"version": "1.0.3",
|
||||
"version": "2.0.0",
|
||||
"slug": "ssh",
|
||||
"description": "Allows SSH connections to your Home Assistant instance",
|
||||
"url": "https://github.com/hassio-addons/addon-ssh",
|
||||
"startup": "services",
|
||||
"boot": "auto",
|
||||
"host_network": true,
|
||||
"hassio_api": true,
|
||||
"homeassistant_api": true,
|
||||
"host_network": true,
|
||||
"map": [
|
||||
"config:rw",
|
||||
"ssl:rw",
|
||||
|
@ -16,24 +17,29 @@
|
|||
"backup:rw"
|
||||
],
|
||||
"options": {
|
||||
"debug": false,
|
||||
"log_level": "info",
|
||||
"port": 22,
|
||||
"username": "hass",
|
||||
"username": "hassio",
|
||||
"password": "",
|
||||
"authorized_keys": [],
|
||||
"sftp": false,
|
||||
"compatibility_mode": false,
|
||||
"packages": [],
|
||||
"init_commands": []
|
||||
},
|
||||
"schema": {
|
||||
"debug": "bool",
|
||||
"port": "int",
|
||||
"log_level": "match(^(trace|debug|info|notice|warning|error|fatal)$)",
|
||||
"port": "port",
|
||||
"username": "str",
|
||||
"password": "str",
|
||||
"authorized_keys": ["str"],
|
||||
"sftp": "bool",
|
||||
"compatibility_mode": "bool",
|
||||
"packages": ["str"],
|
||||
"init_commands": ["str"]
|
||||
},
|
||||
"environment": {
|
||||
"LOG_FORMAT": "{LEVEL}: {MESSAGE}"
|
||||
},
|
||||
"image": "hassioaddons/ssh-{arch}"
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue