Update to 3.0.6.1265

This commit is contained in:
alexbelgium
2021-06-18 01:57:16 +02:00
parent 7280a21aee
commit 7ef5f7f358
3 changed files with 33 additions and 9 deletions

View File

@@ -1,3 +1,6 @@
## 3.0.6.1265 (18-06-2021)
- Update to latest version from linuxserver/docker-sonarr
## 3.0.2.4552 ## 3.0.2.4552
- Update to latest version from linuxserver/docker-sonarr - Update to latest version from linuxserver/docker-sonarr

View File

@@ -1,6 +1,6 @@
ARG BUILD_FROM ARG BUILD_FROM
ARG BUILD_VERSION ARG BUILD_VERSION
ARG BUILD_UPSTREAM="3.0.6.1196" ARG BUILD_UPSTREAM="3.0.6.1265"
FROM ${BUILD_FROM}${BUILD_UPSTREAM} FROM ${BUILD_FROM}${BUILD_UPSTREAM}
ARG BASHIO_VERSION=0.13.0 ARG BASHIO_VERSION=0.13.0

View File

@@ -1,20 +1,33 @@
{ {
"name": "Sonarr NAS", "name": "Sonarr NAS",
"version": "3.0.6.1196-dev2", "version": "3.0.6.1265",
"upstream": "3.0.6.1196", "upstream": "3.0.6.1265",
"slug": "sonarr_nas", "slug": "sonarr_nas",
"description": "Can monitor multiple RSS feeds for new episodes of your favorite shows and will grab, sort and rename them. ", "description": "Can monitor multiple RSS feeds for new episodes of your favorite shows and will grab, sort and rename them. ",
"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": {
"8989/tcp": 8989 "8989/tcp": 8989
}, },
"ports_description": { "ports_description": {
"8989/tcp": "web interface" "8989/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:8989]", "webui": "http://[HOST]:[PORT:8989]",
"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> <//SERVER2/SHARE2>", "networkdisks": "<//SERVER/SHARE> <//SERVER2/SHARE2>",
"cifsusername": "<username>", "cifsusername": "<username>",
"cifspassword": "<password>" "cifspassword": "<password>"
@@ -34,11 +49,17 @@
"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",
"smbv1": "bool?" "smbv1": "bool?"
}, },
"snapshot_exclude": ["**/Backups/*", "**/logs/*", "**/MediaCover/*"] "snapshot_exclude": [
"**/Backups/*",
"**/logs/*",
"**/MediaCover/*"
]
} }