One or two containers crash at irregular intervals and don't go back up automatically #572
-
|
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 3 replies
-
Probably going to see the compose.yml file at least. |
Beta Was this translation helpful? Give feedback.
-
/services: |
Beta Was this translation helpful? Give feedback.
-
Is this your compose.yml file? I use the 'lscr.io/linuxserver/jellyfin' image, can't remember the reason why, but it's very stable. I run mine on a AMD 5600, but I'll list the differences I have in my compose.yml file.
Also as you are using network_mode: host you shouldn't need ports either. I've just looked at jellyfin/jellyfin and linuxserver and neither have teh group_add: or ROC_ENABLE_PRE_VEGA=1, so not sure these are needed sorry. I suppose you could also spin up a linuxserver Jellyfin and see if this makes any difference. Not sure if I can suggest anything else, I think I would try linnuxserver image and use volumes for all paths and see how that goes. |
Beta Was this translation helpful? Give feedback.
-
My Jellyfin is working fine. Normally, with I think you should create another new Jellyfin stack with minimal configs and mount a local media folder, so that you can determine whether it is the container issue, or config issues, or mount issues (not sure if jellyfin supports NFS/SMB). Here is my services:
jellyfin:
ports:
- 8096:8096
image: jellyfin/jellyfin
volumes:
- ./config:/config
- ./cache:/cache
- /mnt/user/Videos:/mnt/user/Videos # Array (XFS)
restart: unless-stopped |
Beta Was this translation helpful? Give feedback.
-
It seems that the issue was using binds in the docker compose file. |
Beta Was this translation helpful? Give feedback.
My Jellyfin is working fine.
Normally, with
restart: unless-stopped
, it should restart the container automatically after crash. However, in your case, it didn't.I think you should create another new Jellyfin stack with minimal configs and mount a local media folder, so that you can determine whether it is the container issue, or config issues, or mount issues (not sure if jellyfin supports NFS/SMB).
Here is my
compose.yaml
for your reference: