2024-05-03, 01:08 AM
(This post was last modified: 2024-05-03, 01:14 AM by geebx. Edited 3 times in total.)
try mounting your drive to /mnt or /srv and make sure it's outside your home directory. avoid any directory related to your user account $USER.
if you're using docker-compose file, maybe this will help:
/mnt/windows-disk <- this is where I mounted my internal SSD and I didn't have to set permissions
if you're using docker-compose file, maybe this will help:
Code:
services:
jellyfin:
image: 'jellyfin/jellyfin:latest'
container_name: jellyfin
restart: unless-stopped
ports:
- 8096:8096
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
volumes:
- ./jellyfin/config:/config
- ./jellyfin/cache:/cache
- /mnt/windows-disk:/media
/mnt/windows-disk <- this is where I mounted my internal SSD and I didn't have to set permissions