2024-12-08, 02:57 PM
Ok. I see the problem.
The way you have the cache folder setup will put the cache folder above the config. Once a day there is a cache cleanup job that recursive deletes files and folders older than a certain age. What is happening is that the cache cleanup job is deleting your permanent data in /config. Change your setup to this.
This isolates the two folders from each other and ensures that the cache cleanup job only cleans up the actual cache.
Code:
--volume /home/danielle/jellyfin/config:/config \
--volume /home/danielle/jellyfin:/cache \
The way you have the cache folder setup will put the cache folder above the config. Once a day there is a cache cleanup job that recursive deletes files and folders older than a certain age. What is happening is that the cache cleanup job is deleting your permanent data in /config. Change your setup to this.
Code:
--volume /home/danielle/jellyfin/config:/config \
--volume /home/danielle/jellyfin/cache:/cache \
This isolates the two folders from each other and ensures that the cache cleanup job only cleans up the actual cache.