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
- Update to latest version from linuxserver/docker-jackett

View File

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

View File

@@ -1,20 +1,33 @@
{
"name": "Jackett NAS",
"version": "0.17.946",
"upstream": "0.17.946",
"version": "0.17.952",
"upstream": "0.17.952",
"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",
"url": "https://github.com/alexbelgium/hassio-addons",
"startup": "services",
"arch": ["aarch64", "amd64", "armv7", "armhf"],
"arch": [
"aarch64",
"amd64",
"armv7",
"armhf"
],
"ports": {
"9117/tcp": 9117
},
"ports_description": {
"9117/tcp": "web interface"
},
"map": ["config:rw", "share:rw", "media:rw", "ssl"],
"privileged": ["SYS_ADMIN", "DAC_READ_SEARCH"],
"map": [
"config:rw",
"share:rw",
"media:rw",
"ssl"
],
"privileged": [
"SYS_ADMIN",
"DAC_READ_SEARCH"
],
"full_access": true,
"webui": "http://[HOST]:[PORT:9117]",
"boot": "auto",
@@ -25,7 +38,9 @@
"options": {
"PUID": 0,
"PGID": 0,
"localdisks": ["sda1"],
"localdisks": [
"sda1"
],
"networkdisks": "<//SERVER/SHARE>",
"cifsusername": "<username>",
"cifspassword": "<password>"
@@ -34,10 +49,16 @@
"PUID": "int",
"PGID": "int",
"TZ": "str?",
"localdisks": ["str"],
"localdisks": [
"str"
],
"networkdisks": "str",
"cifsusername": "str",
"cifspassword": "str"
},
"snapshot_exclude": ["**/Backups/*", "**/logs/*", "**/MediaCover/*"]
"snapshot_exclude": [
"**/Backups/*",
"**/logs/*",
"**/MediaCover/*"
]
}