Create config.json

This commit is contained in:
Alexandre
2021-10-09 11:47:45 +02:00
committed by GitHub
parent b9f70fd245
commit f8dd7c45e9

51
lidarr/config.json Normal file
View File

@@ -0,0 +1,51 @@
{
"name": "Lidarr NAS",
"version": "0",
"upstream": "0",
"slug": "lidarr_nas",
"description": "Music collection manager for Usenet and BitTorrent users",
"url": "https://github.com/alexbelgium/hassio-addons",
"arch": [
"aarch64",
"amd64",
"armv7",
"armhf"
],
"ports": {
"8686/tcp": 8686
},
"ports_description": {
"8686/tcp": "web interface"
},
"map": [
"config:rw",
"share:rw",
"media:rw"
],
"privileged": [
"SYS_ADMIN",
"DAC_READ_SEARCH"
],
"webui": "http://[HOST]:[PORT:8686]",
"boot": "auto",
"environment": {
"PUID": "0",
"PGID": "0"
},
"options": {
"PUID": 0,
"PGID": 0,
"networkdisks": "<//SERVER/SHARE>,<//SERVER2/SHARE2>",
"cifsusername": "<username>",
"cifspassword": "<password>"
},
"schema": {
"PUID": "int",
"PGID": "int",
"TZ": "str?",
"localdisks": "str?",
"networkdisks": "str?",
"cifsusername": "str?",
"cifspassword": "str?"
}
}