forked from hassio-addons/repository
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json
45 lines (45 loc) · 984 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
40
41
42
43
44
45
{
"name": "Log Viewer",
"version": "0.12.0",
"slug": "logviewer",
"description": "Browser-based log utility for Home Assistant",
"url": "https://github.com/hassio-addons/addon-log-viewer",
"init": false,
"ingress": true,
"ingress_stream": true,
"panel_icon": "mdi:text-box-outline",
"homeassistant": "0.92.0b2",
"arch": [
"aarch64",
"amd64",
"armhf",
"armv7",
"i386"
],
"homeassistant_api": true,
"auth_api": true,
"ports": {
"80/tcp": null
},
"ports_description": {
"80/tcp": "Web interface (Not required for Ingress)"
},
"map": [
"config",
"share",
"ssl"
],
"options": {
"ssl": true,
"certfile": "fullchain.pem",
"keyfile": "privkey.pem"
},
"schema": {
"log_level": "list(trace|debug|info|notice|warning|error|fatal)?",
"ssl": "bool",
"certfile": "str",
"keyfile": "str",
"leave_front_door_open": "bool?"
},
"image": "ghcr.io/hassio-addons/log-viewer/{arch}"
}