![]() |
Jellyfin on docker won't restart after power failure - Printable Version +- Jellyfin Forum (https://forum.jellyfin.org) +-- Forum: Support (https://forum.jellyfin.org/f-support) +--- Forum: Troubleshooting (https://forum.jellyfin.org/f-troubleshooting) +--- Thread: Jellyfin on docker won't restart after power failure (/t-jellyfin-on-docker-won-t-restart-after-power-failure) |
Jellyfin on docker won't restart after power failure - SquishySquash - 2025-06-28 Hello, I'm running Jellyfin on my Synology NAS server using Container Manager. I'm using official jellyfin/jellyfin image from https://hub.docker.com/r/jellyfin/jellyfin My YAML compose is: Code: name: jellyfin My NAS is configured to automatically restart after power failure and it does so, the problem is that when there is power failure and my NAS reboots once power is back on the Jellyfin container wont restart automatically. Beside Jellyfin I'm also running other services in containers and most of them restart after power failure without any problems (despite using same restart:'unless-stopped' config). Jellyfin is one of few that causes problems. In case i simply turn off my NAS and turn it back on (using physical button) then all containers restart without issues. RE: Jellyfin on docker won't restart after power failure - theguymadmax - 2025-06-28 Can you post the Jellyfin server logs. RE: Jellyfin on docker won't restart after power failure - SquishySquash - 2025-06-29 (2025-06-28, 07:33 PM)theguymadmax Wrote: Can you post the Jellyfin server logs. There is nothing in jellyfin logs. There is simply a time gap. Last entries are from whatever hour I've accessed Jellyfinn last time and then next log entry will be from the moment I manually start jellyfin container on my NAS The problem is with whole jellyfin container/image not jellyfin service. RE: Jellyfin on docker won't restart after power failure - gears - 2025-07-01 (2025-06-29, 05:57 PM)SquishySquash Wrote:(2025-06-28, 07:33 PM)theguymadmax Wrote: Can you post the Jellyfin server logs. Try adding restart: 'unless-stopped' to your docker compose. For example: Code: name: jellyfin |