forked from rockstor/rockon-registry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
home-assistant.json
38 lines (38 loc) · 1 KB
/
home-assistant.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
{
"Home Assistant": {
"description": "Home Assistant is an open-source home automation platform running on Python 3. Track and control all devices at home and automate control.",
"ui": {
"slug": ""
},
"website": "https://home-assistant.io/",
"version": "1.0",
"containers": {
"home-assistant": {
"image": "homeassistant/home-assistant",
"launch_order": 1,
"opts": [
[
"--net",
"host"
]
],
"uid": -1,
"ports": {
"8123": {
"description": "Home Assistant UI port. You may need to open it(protocol: tcp) on your firewall.",
"host_default": 8123,
"label": "Server port",
"protocol": "tcp",
"ui": true
}
},
"volumes": {
"/config": {
"description": "Choose a Share for Home Assintant configuration.",
"label": "Home Assistant Config"
}
}
}
}
}
}