2024-09-22, 08:06 AM 
(This post was last modified: 2024-09-22, 08:07 AM by Efficient_Good_5784. Edited 1 time in total.)
		
	
	
		You're not mounting the volumes correctly.
You're missing the whole ": /config" part as an example.
Here's an example of how you're supposed to format those volume lines:
	
	  
	
	
You're missing the whole ": /config" part as an example.
Here's an example of how you're supposed to format those volume lines:
Code:
volumes:
      - /volume1/docker/jellyfin/cache:/cache:rw
      - /volume1/docker/jellyfin/config:/config:rw
      #- /volume1/<path-to-folder>/shows:/shows:rw
      #- /volume1/<path-to-folder>/movies:/movies:ro
      #note: (:rw = read/write) & (:ro = read only)
