Update to 3.0.2.4552-ls98

This commit is contained in:
alexbelgium
2021-04-10 21:30:51 +02:00
parent 50e175c602
commit 8d07ff383c
3 changed files with 33 additions and 9 deletions

View File

@@ -1 +1,4 @@
## 3.0.2.4552-ls98
- Update to latest version from linuxserver/docker-radarr
- Enables PUID/GUID options - Enables PUID/GUID options

View File

@@ -1,6 +1,6 @@
ARG BUILD_FROM ARG BUILD_FROM
ARG BUILD_VERSION ARG BUILD_VERSION
ARG BUILD_UPSTREAM="3.0.2.4552" ARG BUILD_UPSTREAM="3.0.2.4552-ls98"
FROM ${BUILD_FROM}${BUILD_UPSTREAM} FROM ${BUILD_FROM}${BUILD_UPSTREAM}

View File

@@ -1,20 +1,33 @@
{ {
"name": "Radarr NAS", "name": "Radarr NAS",
"version": "3.0.2.4552", "version": "3.0.2.4552-ls98",
"upstream": "3.0.2.4552", "upstream": "3.0.2.4552-ls98",
"slug": "radarr_nas", "slug": "radarr_nas",
"description": "A fork of Sonarr to work with movies like Couchpotato", "description": "A fork of Sonarr to work with movies like Couchpotato",
"url": "https://github.com/alexbelgium/hassio-addons", "url": "https://github.com/alexbelgium/hassio-addons",
"startup": "services", "startup": "services",
"arch": ["aarch64", "amd64", "armv7", "armhf"], "arch": [
"aarch64",
"amd64",
"armv7",
"armhf"
],
"ports": { "ports": {
"7878/tcp": 7878 "7878/tcp": 7878
}, },
"ports_description": { "ports_description": {
"7878/tcp": "web interface" "7878/tcp": "web interface"
}, },
"map": ["config:rw", "share:rw", "media:rw", "ssl"], "map": [
"privileged": ["SYS_ADMIN", "DAC_READ_SEARCH"], "config:rw",
"share:rw",
"media:rw",
"ssl"
],
"privileged": [
"SYS_ADMIN",
"DAC_READ_SEARCH"
],
"full_access": true, "full_access": true,
"webui": "http://[HOST]:[PORT:7878]", "webui": "http://[HOST]:[PORT:7878]",
"boot": "auto", "boot": "auto",
@@ -25,7 +38,9 @@
"options": { "options": {
"PUID": 0, "PUID": 0,
"PGID": 0, "PGID": 0,
"localdisks": ["sda1"], "localdisks": [
"sda1"
],
"networkdisks": "<//SERVER/SHARE>", "networkdisks": "<//SERVER/SHARE>",
"cifsusername": "<username>", "cifsusername": "<username>",
"cifspassword": "<password>" "cifspassword": "<password>"
@@ -34,10 +49,16 @@
"PUID": "int", "PUID": "int",
"PGID": "int", "PGID": "int",
"TZ": "str?", "TZ": "str?",
"localdisks": ["str"], "localdisks": [
"str"
],
"networkdisks": "str", "networkdisks": "str",
"cifsusername": "str", "cifsusername": "str",
"cifspassword": "str" "cifspassword": "str"
}, },
"snapshot_exclude": ["**/Backups/*", "**/logs/*", "**/MediaCover/*"] "snapshot_exclude": [
"**/Backups/*",
"**/logs/*",
"**/MediaCover/*"
]
} }