-
Notifications
You must be signed in to change notification settings - Fork 98
/
home-assistant-linuxserver.json
50 lines (50 loc) · 1.99 KB
/
home-assistant-linuxserver.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
40
41
42
43
44
45
46
47
48
49
50
{
"Home Assistant Linuxserver.io": {
"description": "Open source home automation that puts local control and privacy first.<p>Note that this container uses host networking to allow for multi-cast and uPnP functionality that Home Assistant provides. This version also using a non-root user.</p><p>Based on a custom docker image: <a href='https://hub.docker.com/r/linuxserver/homeassistant' target='_blank'>https://hub.docker.com/r/linuxserver/homeassistant</a>, available for amd64 and arm64 architecture.</p>",
"ui": {
"slug": ""
},
"website": "https://home-assistant.io/",
"version": "1.2",
"containers": {
"homeassistantlsio": {
"image": "lscr.io/linuxserver/homeassistant",
"tag": "latest",
"launch_order": 1,
"opts": [
[
"--net",
"host"
]
],
"ports": {
"8123": {
"description": "Home Assistant UI port. Because host network mode is used, this must be set to port 8123. You may need to open the same port on your firewall (protocol: tcp).",
"host_default": 8123,
"label": "Server port",
"protocol": "tcp",
"ui": true
}
},
"volumes": {
"/config": {
"description": "Choose a Share for configuration. E.g.: create a Share called ha-config for this purpose alone.",
"label": "Home Assistant Config Share"
}
},
"environment": {
"PUID": {
"description": "Enter a valid User ID (UID) to run Home Assistant with. It must have full permissions to all Shares mapped in the previous step.",
"label": "UID",
"index": 1
},
"PGID": {
"description": "Enter a valid Group ID (GID) to use along with the above UID. It(or the above UID) must have full permissions to all Shares mapped in the previous step.",
"label": "GID",
"index": 2
}
}
}
}
}
}