Yesterday, 10:09 PM
Yes, I have it set like:
And now, I switched to:
And the issue still the same.
Code:
volumes:
- /local_vol/docker/jellyfin/config:/config:rw
- /local_vol/docker/jellyfin/cache:/cache:rw
- /local_vol/video:/media:rw
- /local_vol/music:/music:rw
And now, I switched to:
Code:
volumes:
- type: bind
source: /volume1/docker/jellyfin/config
target: /config
read_only: false
- type: bind
source: /volume1/docker/jellyfin/cache
target: /cache
read_only: false
- type: bind
source: /volume1/video
target: /media
read_only: false
- type: bind
source: /volume1/music
target: /music
read_only: false
- type: volume
source: exclude
target: /media/#recycle
read_only: true
- type: volume
source: exclude
target: /media/#snapshot
read_only: true
- type: volume
source: exclude
target: /music/#recycle
read_only: true
- type: volume
source: exclude
target: /music/#snapshot
read_only: true
And the issue still the same.