2023-07-13, 05:51 PM
(This post was last modified: 2023-07-13, 05:52 PM by TheDreadPirate.)
Code:
docker run -d \
--name jellyfin \
--net=host \
--volume jellyfin-config:/config \
--volume jellyfin-cache:/cache \
--mount type=bind,source=/home/user/jellyfin,target=/media \
--restart=unless-stopped \
jellyfin/jellyfin
I think your mount parameter should be
Code:
--mount type=bind,source=/media,target=/media \
The way you had it, I think it is mounting /home/user/jellyfin on the Linux system as /media in the container. Which is probably a mostly empty folder.