2024-11-01, 04:25 PM
(This post was last modified: 2024-11-01, 06:59 PM by Darlor. Edited 2 times in total.)
(2024-11-01, 04:08 PM)theguymadmax Wrote: sudo mkdir /media/Zic
sudo nano /etc/fstab
Add this entry
UUID=2b57e47f-4b31-4ae7-bdc5-e99a09f884b8 /media/Zic ext4 defaults 0 0
Save and reboot your computer.
Set permissions as described in this post.
Then update your docker compose with the new path like you did before.
I modified fstab as shown.
I restarted the PC.
Regarding permissions, I cannot find the jellyfin group allowing to grant rwx rights to folders and music files.
And if I update my docker compose with the new path like I did before, then the audio library is completely empty.
docker-compose.yml :
Code:
services:
jellyfin:
image: jellyfin/jellyfin
ports:
- '8096:8096'
volumes:
- /home/vortex/jellyfin:/config
- /media/vortex/Zic:/media
environment:
- UID=1000
- GID=1000
restart: always