-
Notifications
You must be signed in to change notification settings - Fork 9
Closed
Description
So i'm running jellyfin with this image jellyfin/jellyfin with docker. Currently on the lastest version 10.10.5.
First thing is that index.html is at another location. It's not at at /usr/share/jellyfin/web/index.html, but at /jellyfin/jellyfin-web/index.html. I guess that's because i'm using a docker container. Would be nice to to have if it could be stated that the index.html could be in one of these locations. Found the index.html by doing this:
docker exec -it jellyfin bash
find / -name index.html 2>/dev/null
I had this problem:
jellyfin | [10:42:40] [ERR] [1] Namo.Plugin.InPlayerEpisodePreview.InPlayerEpisodePreviewPlugin: Encountered exception while writing to /jellyfin/jellyfin-web/index.html: System.UnauthorizedAccessException: Access to the path '/jellyfin/jellyfin-web/index.html' is denied.
jellyfin | ---> System.IO.IOException: Permission denied
Turns out my the ownership was wrong (set to root root).
solution:
Changing the ownership (replacing jellyfin with your containername, user and group with the user and group of your container)
docker exec -it --user root jellyfin chown user:group /jellyfin/jellyfin-web/index.html
After restarting the container the error is gone and the button shows up.
Metadata
Metadata
Assignees
Labels
No labels