From f8dd7c45e9f3145cfc06b5410187bcc01f0dc6f5 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Sat, 9 Oct 2021 11:47:45 +0200 Subject: [PATCH] Create config.json --- lidarr/config.json | 51 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 lidarr/config.json diff --git a/lidarr/config.json b/lidarr/config.json new file mode 100644 index 000000000..858c07488 --- /dev/null +++ b/lidarr/config.json @@ -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": ",", + "cifsusername": "", + "cifspassword": "" + }, + "schema": { + "PUID": "int", + "PGID": "int", + "TZ": "str?", + "localdisks": "str?", + "networkdisks": "str?", + "cifsusername": "str?", + "cifspassword": "str?" + } +}