2025-01-05, 07:03 PM
(This post was last modified: 2025-01-05, 07:05 PM by Chaperone. Edited 1 time in total.)
Hello,
Following this post, https://jellyfin.org/docs/general/instal...container/, I tried the following modification to my
Notice I changed to
But the issue still present.
Any other ideas to try? Thank you!
Following this post, https://jellyfin.org/docs/general/instal...container/, I tried the following modification to my
docker-compose.yml
:Code:
services:
jellyfin:
image: jellyfin/jellyfin:latest
container_name: jellyfin
environment:
TZ: Europe/Madrid
group_add:
- "937"
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
devices:
- /dev/dri/:/dev/dri/
restart: unless-stopped
network_mode: "host"
volumes:
exclude:
Notice I changed to
network_mode: "host"
.But the issue still present.
Any other ideas to try? Thank you!