Files
addons/ssh/config.json
Franck Nijhof 2f80548b72 Re-branding of core add-ons (#1046)
* Re-branding of core add-ons

* Update title README

* Fix ada description

Co-Authored-By: Paulus Schoutsen <balloob@gmail.com>

Co-authored-by: Paulus Schoutsen <paulus@home-assistant.io>
2020-02-04 21:38:55 +01:00

30 lines
756 B
JSON

{
"name": "SSH server",
"version": "8.2",
"slug": "ssh",
"description": "Allow logging in remotely to Home Assistant using SSH",
"url": "https://github.com/home-assistant/hassio-addons/tree/master/ssh",
"arch": ["armhf", "armv7", "aarch64", "amd64", "i386"],
"startup": "services",
"ingress": true,
"panel_icon": "mdi:console",
"panel_title": "Terminal",
"boot": "auto",
"hassio_api": true,
"hassio_role": "manager",
"auto_uart": true,
"ports": {
"22/tcp": 22
},
"map": ["config:rw", "ssl:rw", "addons:rw", "share:rw", "backup:rw"],
"options": {
"authorized_keys": [],
"password": ""
},
"schema": {
"authorized_keys": ["str"],
"password": "str"
},
"image": "homeassistant/{arch}-addon-ssh"
}