Files
addons/ssh/config.json
Pascal Vizeli 9e589a0d5e Add new CLI (#222)
* Add new CLI

* Use bash as default shell

* update cli version

* fix docker file
2018-01-08 23:17:22 +01:00

24 lines
519 B
JSON

{
"name": "SSH server",
"version": "3.0",
"slug": "ssh",
"description": "Allows connections over SSH",
"url": "https://home-assistant.io/addons/ssh/",
"startup": "services",
"boot": "auto",
"hassio_api": 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"
}