I faced an issue on my F4-424 (TOS 6) since couple of weeks, the NAS became unreachable with Jellyfin on Docker.
I spent some time to find the NAS killer. Finally by switch ON/OFF some containers, i finally found that Jellyfin is the one..
Unfortunatly I can't find any logs about it.
I just have an unreachable NAS. CPU or RAM are OK just before the tornado. I use Beszel to get some monitoring data.
Here is my docker-compose:
Code: Select all
services:
jellyfin:
image: lscr.io/linuxserver/jellyfin:latest
container_name: jellyfin
environment:
- PUID=Anonymous
- PGID=Anonymous
- TZ=Europe/Paris
volumes:
- /Volume2/DockerAppsData/jellyfin/config:/config
- /Volume2/jellyfin:/data/media
ports:
- 8096:8096
devices:
- /dev/dri:/dev/dri
restart: unless-stopped
deploy:
resources:
limits:
cpus: "2.00"
memory: 4096M
networks: {}And if you already faced this kind of issue, please let me know how I can solve it.
For the moment, I am back on the community app but I would prefer to have it on Docker...
I'll try again under TOS7 when it will be available in stable version.

