services: jellyfin: #for specific image-> image: jellyfin/jellyfin:10.8.13 image: jellyfin/jellyfin:latest container_name: Jellyfin environment: - PUID=1026 - PGID=100 - TZ=Australia/Perth #- JELLYFIN_PublishedServerUrl=192.168.1.# #note: change TZ to your timezone identifier: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones volumes: - /volume1/docker/jellyfin/cache:/cache:rw - /volume1/docker/jellyfin/config:/config:rw - /volume1/TV Shows:/TV Shows:rw - /volume2/Anime:/Anime:rw - /volume2/Movies:/Movies:rw #- /volume1//movies:/movies:ro #note: (:rw = read/write) & (:ro = read only) #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 ports: - 8096:8096/tcp #- :8096/tcp network_mode: bridge #network_mode: host restart: unless-stopped