mirror of
https://github.com/aljazceru/addons.git
synced 2026-02-01 03:05:49 +01:00
* ssh: Fix for non existing .bash_profile startup error * ssh: Add current, short, path to command line prompt * ssh: Bump to 8.1, updated changelog
30 lines
730 B
JSON
30 lines
730 B
JSON
{
|
|
"name": "SSH server",
|
|
"version": "8.1",
|
|
"slug": "ssh",
|
|
"description": "Allows connections over 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"
|
|
}
|