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 13:17:38 +01:00
committed by GitHub
parent c9b51a6d9e
commit 7d13e1187f
3 changed files with 14 additions and 2 deletions
+7
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"