2025-06-28, 06:47 PM
(This post was last modified: 2025-06-28, 06:51 PM by SquishySquash. Edited 2 times in total.)
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:
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.
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
services:
jellyfin:
image: jellyfin/jellyfin:latest
container_name: jellyfin
network_mode: host
environment:
- TZ=Europe/Warsaw
volumes:
- /volume2/docker/jellyfin/config:/config
- /volume2/docker/jellyfin/cache:/cache
- /volume2/docker/jellyfin/logs:/logs
- /volume1/Data/Media:/media
devices:
# - /dev/dri/renderD128:/dev/dri/renderD128
- /dev/dri:/dev/dri
restart: 'unless-stopped'
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.