Update to 0.9.5

This commit is contained in:
alexbelgium
2021-05-09 01:55:33 +02:00
parent dcf42a5070
commit 75f88c8235
3 changed files with 27 additions and 7 deletions

View File

@@ -1,3 +1,6 @@
## 0.9.5 (09-05-2021)
- Update to latest version from linuxserver/docker-bazarr
## 3.0.2.4552 ## 3.0.2.4552
- Update to latest version from linuxserver/docker-bazarr - Update to latest version from linuxserver/docker-bazarr

View File

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

View File

@@ -1,20 +1,33 @@
{ {
"name": "Bazarr NAS", "name": "Bazarr NAS",
"version": "0.9.4", "version": "0.9.5",
"upstream": "0.9.4", "upstream": "0.9.5",
"slug": "bazarr_nas", "slug": "bazarr_nas",
"description": "Companion application to Sonarr and Radarr to download subtitles", "description": "Companion application to Sonarr and Radarr to download subtitles",
"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": {
"6767/tcp": 6767 "6767/tcp": 6767
}, },
"ports_description": { "ports_description": {
"6767/tcp": "web interface" "6767/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"
],
"webui": "http://[HOST]:[PORT:6767]", "webui": "http://[HOST]:[PORT:6767]",
"boot": "auto", "boot": "auto",
"environment": { "environment": {
@@ -33,5 +46,9 @@
"cifsusername": "str?", "cifsusername": "str?",
"cifspassword": "str?" "cifspassword": "str?"
}, },
"snapshot_exclude": ["**/Backups/*", "**/logs/*", "**/MediaCover/*"] "snapshot_exclude": [
"**/Backups/*",
"**/logs/*",
"**/MediaCover/*"
]
} }