mirror of
https://github.com/hassio-addons/addon-tautulli.git
synced 2025-05-04 11:01:26 +00:00
Migrate JSON config to YAML (#186)
This commit is contained in:
parent
2bdac10100
commit
789888eb85
4 changed files with 42 additions and 42 deletions
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"build_from": {
|
||||
"aarch64": "ghcr.io/hassio-addons/base/aarch64:10.1.0",
|
||||
"amd64": "ghcr.io/hassio-addons/base/amd64:10.1.0",
|
||||
"armhf": "ghcr.io/hassio-addons/base/armhf:10.1.0",
|
||||
"armv7": "ghcr.io/hassio-addons/base/armv7:10.1.0",
|
||||
"i386": "ghcr.io/hassio-addons/base/i386:10.1.0"
|
||||
}
|
||||
}
|
7
tautulli/build.yaml
Normal file
7
tautulli/build.yaml
Normal file
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
build_from:
|
||||
aarch64: ghcr.io/hassio-addons/base/aarch64:10.1.0
|
||||
amd64: ghcr.io/hassio-addons/base/amd64:10.1.0
|
||||
armhf: ghcr.io/hassio-addons/base/armhf:10.1.0
|
||||
armv7: ghcr.io/hassio-addons/base/armv7:10.1.0
|
||||
i386: ghcr.io/hassio-addons/base/i386:10.1.0
|
|
@ -1,33 +0,0 @@
|
|||
{
|
||||
"name": "Tautulli",
|
||||
"version": "dev",
|
||||
"slug": "tautulli",
|
||||
"description": "Monitoring and tracking tool for Plex Media Server",
|
||||
"url": "https://github.com/hassio-addons/addon-tautulli/tree/main/README.md",
|
||||
"webui": "[PROTO:ssl]://[HOST]:[PORT:8181]",
|
||||
"arch": ["aarch64", "amd64", "armhf", "armv7", "i386"],
|
||||
"hassio_api": true,
|
||||
"ports": {
|
||||
"8181/tcp": 8181
|
||||
},
|
||||
"ports_description": {
|
||||
"8181/tcp": "Tautulli web interface"
|
||||
},
|
||||
"map": ["ssl", "share:rw"],
|
||||
"options": {
|
||||
"username": "",
|
||||
"password": "",
|
||||
"ssl": true,
|
||||
"certfile": "fullchain.pem",
|
||||
"keyfile": "privkey.pem"
|
||||
},
|
||||
"schema": {
|
||||
"log_level": "list(trace|debug|info|notice|warning|error|fatal)?",
|
||||
"username": "str",
|
||||
"password": "password",
|
||||
"ssl": "bool",
|
||||
"certfile": "str",
|
||||
"keyfile": "str",
|
||||
"leave_front_door_open": "bool?"
|
||||
}
|
||||
}
|
35
tautulli/config.yaml
Normal file
35
tautulli/config.yaml
Normal file
|
@ -0,0 +1,35 @@
|
|||
---
|
||||
name: Tautulli
|
||||
version: dev
|
||||
slug: tautulli
|
||||
description: Monitoring and tracking tool for Plex Media Server
|
||||
url: https://github.com/hassio-addons/addon-tautulli/tree/main/README.md
|
||||
webui: "[PROTO:ssl]://[HOST]:[PORT:8181]"
|
||||
arch:
|
||||
- aarch64
|
||||
- amd64
|
||||
- armhf
|
||||
- armv7
|
||||
- i386
|
||||
hassio_api: true
|
||||
ports:
|
||||
8181/tcp: 8181
|
||||
ports_description:
|
||||
8181/tcp: Tautulli web interface
|
||||
map:
|
||||
- ssl
|
||||
- share:rw
|
||||
options:
|
||||
username: ""
|
||||
password: ""
|
||||
ssl: true
|
||||
certfile: fullchain.pem
|
||||
keyfile: privkey.pem
|
||||
schema:
|
||||
log_level: list(trace|debug|info|notice|warning|error|fatal)?
|
||||
username: str
|
||||
password: password
|
||||
ssl: bool
|
||||
certfile: str
|
||||
keyfile: str
|
||||
leave_front_door_open: bool?
|
Loading…
Add table
Add a link
Reference in a new issue