forked from home-assistant/addons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json
39 lines (39 loc) · 959 Bytes
/
config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "Terminal & SSH",
"version": "8.10.0",
"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"],
"init": false,
"advanced": true,
"startup": "services",
"host_dbus": true,
"ingress": true,
"panel_icon": "mdi:console",
"panel_title": "Terminal",
"boot": "auto",
"hassio_api": true,
"hassio_role": "manager",
"audio": true,
"auto_uart": true,
"ports": {
"22/tcp": null
},
"map": ["config:rw", "ssl:rw", "addons:rw", "share:rw", "backup:rw", "media:rw"],
"options": {
"authorized_keys": [],
"password": "",
"server": {
"tcp_forwarding": false
}
},
"schema": {
"authorized_keys": ["str"],
"password": "str",
"server": {
"tcp_forwarding": "bool"
}
},
"image": "homeassistant/{arch}-addon-ssh"
}