2024-11-01, 05:19 PM
(This post was last modified: 2024-11-01, 05:41 PM by Liquoriced. Edited 1 time in total.)
(2024-11-01, 04:36 PM)TheDreadPirate Wrote: Did your NAS unmount from the host running Jellyfin?
No: both the media and Jellyfin are on the same NAS.
Jellyfin has no issues saving into the docker folder, for example, if I update a movie poster.
The issue is when it tries to access the share where the videos are saved.
Here's the YAML of the installation:
services:
jellyfin:
image: jellyfin/jellyfin
container_name: jellyfin
# user: uid:gid
network_mode: 'host'
volumes:
- ./config:/config
- ./cache:/cache
- type: bind
source: /volume1/Video
target: /media
#- type: bind
# source: /path/to/media2
# target: /media2
# read_only: true
devices:
- /dev/dri/renderD128:/dev/dri/renderD128
- /dev/dri/card0:/dev/dri/card0
#note: uncomment these lines in devices to allow for HWA to work on Synology units with an iGPU
restart: 'unless-stopped'