Jellyfin media file permissions issue (openmediavault)
Hi all! I'm setting up Jellyfin for the first time after previously running a Plex server (the Plex hardware has since died lmao but it was a great proof of concept). I'm running into the same issue I had with Plex, where Linux has that weird issue about file/folder permissions.
Looking it up, I'm seeing a lot of into about Jellyfin making a user, then having to give that user permissions to the media folder. A Jellyfin user is not being created when I install. I am trying to run Jellyfin under the "docker" user I have created so I'm not running as root.
I am installing with the "add from example" on openmediavault.
It creates a compose file that looks like this (timezone removed for privacy, full filepath removed because idk what info that name gives about my drives lmao)
---
# https://hub.docker.com/r/linuxserver/jellyfin
# https://jellyfin.org/docs/
services:
jellyfin:
image: lscr.io/linuxserver/jellyfin:latest
container_name: jellyfin
environment:
- PUID=1001
- PGID=100
- TZ=XXXXX/XXXXX
# - JELLYFIN_PublishedServerUrl=192.168.0.5 #optional
volumes:
- /Appdata/jellyfin/library:/config
- /srv/dev-disk-by-uuid-00000000/Media/jellyfin/tvseries:/data/tvshows
- /srv/dev-disk-by-uuid-00000000/Media/jellyfin/movies:/data/movies
ports:
- 8096:8096
- 8920:8920 #optional
- 7359:7359/udp #optional
- 1900:1900/udp #optional
restart: unless-stopped
Trying to add folders to media libraries, I keep getting the "the path could not be found" error. I've tried the options I can find online, but nothing has helped. Any additional help would be incredible.