chore(jellyfin): Mount cache to emptyDir and add PublishedServerURL var (#1853)

* chore(jellyfin): Mount cache to emptyDir and add PublishedServerURL var

* default to empty
This commit is contained in:
Stavros Kois
2022-02-06 14:17:38 +02:00
committed by GitHub
parent c9b51a6d9e
commit 7d13e1187f
3 changed files with 14 additions and 2 deletions

View File

@@ -21,7 +21,7 @@ name: jellyfin
sources:
- https://github.com/jellyfin/jellyfin
type: application
version: 9.0.38
version: 9.0.39
annotations:
truecharts.org/catagories: |
- media

View File

@@ -82,7 +82,12 @@ questions:
type: dict
attrs:
# Include{fixedEnv}
- variable: JELLYFIN_PublishedServerUrl
description: "Published Server URL"
label: "The Server URL to publish in UDP Auto Discovery response."
schema:
type: string
default: ""
# Include{containerConfig}
- variable: service

View File

@@ -6,6 +6,9 @@ image:
securityContext:
readOnlyRootFilesystem: false
env:
JELLYFIN_PublishedServerUrl: "https://jelly.mydomain.com"
service:
main:
ports:
@@ -17,3 +20,7 @@ persistence:
config:
enabled: true
mountPath: "/config"
cache:
enabled: true
mountPath: "/cache"
type: "emptyDir"