2024-04-29, 11:27 AM
Definitely not normal. I have several test instances of Jellyfin in Docker and do not have to do this.
Try giving your config and cache folders their own directory. I'm wondering if the cache cleanup job is clearing out the plugins.
Here is my docker compose for reference.
The way you currently have it setup the config sub folders and cache subfolders are mixed together.
Try giving your config and cache folders their own directory. I'm wondering if the cache cleanup job is clearing out the plugins.
Here is my docker compose for reference.
Code:
version: '3.5'
services:
jellyfin:
image: jellyfin/jellyfin:unstable
container_name: jellyfin-unstable
user: 105:104 # Jellyfin user for deb install
group_add:
- "993" # Intel render group
network_mode: 'host'
volumes:
- ./jellyfin-data/config:/config
- ./jellyfin-data/cache:/cache
- /media:/media:ro
devices:
- /dev/dri/renderD128:/dev/dri/renderD128
restart: 'unless-stopped'
# Optional - alternative address used for autodiscovery
#environment:
# - JELLYFIN_PublishedServerUrl=http://example.com
# Optional - may be necessary for docker healthcheck to pass if running in host network mode
extra_hosts:
- "host.docker.internal:host-gateway"
The way you currently have it setup the config sub folders and cache subfolders are mixed together.