2024-09-04, 09:38 PM
(This post was last modified: 2024-09-04, 09:39 PM by TheDreadPirate. Edited 1 time in total.)
Wait. Not sure why I didn't notice sooner. You didn't pass in the media directory. Only paths for /config and /cache.
You need to add volumes for your media directories.
From my docker compose.
The container cannot see anything on the host unless you mount it in the config.
Code:
-v /docker/jellyfin/config:/config -v /docker/jellyfin/cache:/cache
You need to add volumes for your media directories.
From my docker compose.
Code:
volumes:
- ./jellyfin-stable-data/config:/config
- ./jellyfin-stable-data/cache:/cache
- /media/library:/media/library:ro
- /media/storage2:/media/storage2
- /media/ramdisk:/media/ramdisk
The container cannot see anything on the host unless you mount it in the config.