Jellyfin docker project deployment error
DISCLAIMER: I'm a noob at deploying dockers/linux
I just got my DXP2800 and am trying to deploy the jellyfin docker on my NAS. I keep getting this error and couldn't find much help online on what might be wrong:
"service "jellyfin" refers to undefined volume Shared folder/docker/jellyfin: invalid compose project"
What am I doing wrong? Here is my config:
---
services:
jellyfin:
image: lscr.io/linuxserver/jellyfin:latest
container_name: jellyfin
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
- JELLYFIN_PublishedServerUrl=http://192.168.68.90 #optional
volumes:
- Shared Folder/docker/jellyfin/library:/config
- Shared Folder/Videos/TVSeries:/data/tvshows
- Shared Folder/Videos/Movies:/data/movies
ports:
- 8096:8096
- 8920:8920 #optional
- 7359:7359/udp #optional
- 1900:1900/udp #optional
restart: unless-stopped