2024-09-16, 05:32 PM
My YAML file is set up like this, and I've tried adding the volume2 bind and target to the compose file. However, when i try to add the library in jellyfin, the library on volume2 does not show up at all. (I ran out of space on volume 1 and would like to store my media in volume2)
Am I doing something wrong, is there another place i need to add volume2 so that jellyfin knows to look for it when adding a Library?
Code:
version: '3.5'
services:
jellyfin:
image: jellyfin/jellyfin
container_name: jellyfin
# user: uid:gid
network_mode: 'host'
volumes:
- ./config:/config
- ./cache:/cache
- type: bind
source: /volume1/Media/Movies
target: /movies
- type: bind
source: /volume2/Media2/Movies
target: /movies
- type: bind
source: /volume1/Media/Shows
target: /shows
- type: bind
source: /volume1/Media/Books
target: /books
read_only: false
Am I doing something wrong, is there another place i need to add volume2 so that jellyfin knows to look for it when adding a Library?