aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTerror-Gene <mcinnes.scott@gmail.com>2019-04-11 03:19:05 +0930
committerGitHub <noreply@github.com>2019-04-11 03:19:05 +0930
commitf888c4b641218557265148c318074a227a79df9e (patch)
treea4d395c00b9d321a5372e79d04250fd5573c7b4a
parenta1d50a6d055c414c95fa0ea2bf58db79afb6dc74 (diff)
Fix missing Unraid cache mount
Cache folder was not mounted outside of the Docker image since its separation from the config folder. Config HostDir was only updated for consistency, previous directory was overridden by unraid into the appdata/appname folder anyway. Name capitalization was corrected as this is only used by new installations & does not affect current installations/updates.
-rw-r--r--deployment/unraid/docker-templates/jellyfin.xml16
1 files changed, 11 insertions, 5 deletions
diff --git a/deployment/unraid/docker-templates/jellyfin.xml b/deployment/unraid/docker-templates/jellyfin.xml
index 5a5b4bb5c..eec9967bb 100644
--- a/deployment/unraid/docker-templates/jellyfin.xml
+++ b/deployment/unraid/docker-templates/jellyfin.xml
@@ -3,14 +3,15 @@
<TemplateURL>https://raw.githubusercontent.com/jellyfin/jellyfin/deployment/unraid/docker-templates/jellyfin.xml</TemplateURL>
<Beta>False</Beta>
<Category>MediaApp:Video MediaApp:Music MediaApp:Photos MediaServer:Video MediaServer:Music MediaServer:Photos</Category>
- <Name>JellyFin</Name>
+ <Name>Jellyfin</Name>
<Description>
- JellyFin is The Free Software Media Browser Converted By Community Applications Always verify this template (and values) against the dockerhub support page for the container!![br][br]
+ Jellyfin is The Free Software Media Browser Converted By Community Applications Always verify this template (and values) against the dockerhub support page for the container!![br][br]
You can add as many mount points as needed for recordings, movies ,etc. [br][br]
[b][span style='color: #E80000;']Directions:[/span][/b][br]
- [b]/config[/b] : this is where Jellyfin will store it's databases and configuration.[br][br]
+ [b]/config[/b] : This is where Jellyfin will store it's databases and configuration.[br][br]
[b]Port[/b] : This is the default port for Jellyfin. (Will add ssl port later)[br][br]
- [b]Media[/b] : This is the mounting point of your media. When you access it in Jellyfin it will be /media or whatever you chose for a mount point
+ [b]Media[/b] : This is the mounting point of your media. When you access it in Jellyfin it will be /media or whatever you chose for a mount point[br][br]
+ [b]Cache[/b] : This is where Jellyfin will store and manage cached files like images to serve to clients. This is not where all images are stored.[br][br]
[b]Tip:[/b] You can add more volume mappings if you wish Jellyfin has access to it.
</Description>
<Overview>
@@ -35,7 +36,7 @@
</Networking>
<Data>
<Volume>
- <HostDir>/mnt/cache/appdata/config</HostDir>
+ <HostDir>/mnt/user/appdata/jellyfin</HostDir>
<ContainerDir>/config</ContainerDir>
<Mode>rw</Mode>
</Volume>
@@ -44,6 +45,11 @@
<ContainerDir>/media</ContainerDir>
<Mode>rw</Mode>
</Volume>
+ <Volume>
+ <HostDir>/mnt/user/appdata/jellyfin/cache/</HostDir>
+ <ContainerDir>/cache</ContainerDir>
+ <Mode>rw</Mode>
+ </Volume>
</Data>
<WebUI>http://[IP]:[PORT:8096]/</WebUI>
<Icon>https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/images/jellyfin-icon.png</Icon>