Update to 0.17.952

This commit is contained in:
alexbelgium
2021-04-27 01:56:49 +02:00
parent 3211f9c06c
commit bdfd0f5e4d
3 changed files with 33 additions and 9 deletions

View File

@@ -1,3 +1,6 @@
## 0.17.952 (27-04-2021)
- Update to latest version from linuxserver/docker-jackett
## 3.0.2.4552 ## 3.0.2.4552
- Update to latest version from linuxserver/docker-jackett - Update to latest version from linuxserver/docker-jackett

View File

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

View File

@@ -1,20 +1,33 @@
{ {
"name": "Jackett NAS", "name": "Jackett NAS",
"version": "0.17.946", "version": "0.17.952",
"upstream": "0.17.946", "upstream": "0.17.952",
"slug": "jackett_nas", "slug": "jackett_nas",
"description": "translates queries from apps (Sonarr, SickRage, CouchPotato, Mylar, etc) into tracker-site-specific http queries, parses the html response, then sends results back to the requesting software", "description": "translates queries from apps (Sonarr, SickRage, CouchPotato, Mylar, etc) into tracker-site-specific http queries, parses the html response, then sends results back to the requesting software",
"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": {
"9117/tcp": 9117 "9117/tcp": 9117
}, },
"ports_description": { "ports_description": {
"9117/tcp": "web interface" "9117/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:9117]", "webui": "http://[HOST]:[PORT:9117]",
"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/*"
]
} }