Yesterday, 10:05 PM
Hello All,
I just used Docker to setup Jellyfin on my Debian 12 server. My docker compose file is below. I am running into an issue that Jellyfin can not see the sub-folders in /data/media. So far my searches have not turned up anything to point me in the right direction. I am getting this error in the log.
Jellyfin.Api.Middleware.ExceptionMiddleware: Error processing request: "Could not find a part of the path '/data/media/movies'". URL "GET" "/Environment/DirectoryContents".
When I do an ls -la I get the following results. Since I have Jellyfin running as my user it should have access to the folders with this is my understanding.
drwxr-xr-x 7 (user) (user) 4096 Feb 22 11:24 .
drwxr-xr-x 7 (user) (user) 4096 Feb 22 11:24 ..
drwxr-xr-x 7 (user) (user) 4096 Feb 22 11:24 audiobooks
drwxr-xr-x 7 (user) (user) 4096 Feb 22 11:24 books
drwxr-xr-x 7 (user) (user) 4096 Feb 22 11:24 movies
drwxr-xr-x 7 (user) (user) 4096 Feb 22 11:24 music
drwxr-xr-x 7 (user) (user) 4096 Feb 22 11:24 tv
My Jellyfin build is 10.10.6. If there is anything else I need to provide let me know. Thank you for any help you can give me.
10.10.6
10.10.6
I just used Docker to setup Jellyfin on my Debian 12 server. My docker compose file is below. I am running into an issue that Jellyfin can not see the sub-folders in /data/media. So far my searches have not turned up anything to point me in the right direction. I am getting this error in the log.
Jellyfin.Api.Middleware.ExceptionMiddleware: Error processing request: "Could not find a part of the path '/data/media/movies'". URL "GET" "/Environment/DirectoryContents".
Code:
jellyfin:
container_name: jellyfin
image: ghcr.io/linuxserver/jellyfin
environment:
- PUID=1000
- PGID=1000
- TZ=Asia/Kolkata
ports:
- '8096:8096'
devices:
- '/dev/dri/card0:/dev/dri/card0'
volumes:
- '/home/${USER}/server/configs/jellyfin:/config'
- '/home/${USER}/server/media:/data/media'
restart: unless-stopped
When I do an ls -la I get the following results. Since I have Jellyfin running as my user it should have access to the folders with this is my understanding.
drwxr-xr-x 7 (user) (user) 4096 Feb 22 11:24 .
drwxr-xr-x 7 (user) (user) 4096 Feb 22 11:24 ..
drwxr-xr-x 7 (user) (user) 4096 Feb 22 11:24 audiobooks
drwxr-xr-x 7 (user) (user) 4096 Feb 22 11:24 books
drwxr-xr-x 7 (user) (user) 4096 Feb 22 11:24 movies
drwxr-xr-x 7 (user) (user) 4096 Feb 22 11:24 music
drwxr-xr-x 7 (user) (user) 4096 Feb 22 11:24 tv
My Jellyfin build is 10.10.6. If there is anything else I need to provide let me know. Thank you for any help you can give me.
10.10.6
10.10.6