2024-09-04, 10:49 PM
(This post was last modified: 2024-09-04, 10:50 PM by bagelsworth.)
Thanks. I have tried several variations but still getting path not found. I did manage to get the compose working though.
Attempt 1:
services:
jellyfin:
image: jellyfin/jellyfin:latest
container_name: jellyfin
user: 1000:1000
network_mode: 'host'
volumes:
- /docker/jellyfin/config:/config
- /docker/jellyfin/cache:/cache
- type: bind
source: /media/library
target: /library
restart: 'unless-stopped'
Attempt 2 - tried with both user and no user defined:
services:
jellyfin:
image: jellyfin/jellyfin:latest
container_name: jellyfin
network_mode: 'host'
volumes:
- /docker/jellyfin/config:/config
- /docker/jellyfin/cache:/cache
- /media/library:/library
restart: 'unless-stopped'
Attempt 1:
services:
jellyfin:
image: jellyfin/jellyfin:latest
container_name: jellyfin
user: 1000:1000
network_mode: 'host'
volumes:
- /docker/jellyfin/config:/config
- /docker/jellyfin/cache:/cache
- type: bind
source: /media/library
target: /library
restart: 'unless-stopped'
Attempt 2 - tried with both user and no user defined:
services:
jellyfin:
image: jellyfin/jellyfin:latest
container_name: jellyfin
network_mode: 'host'
volumes:
- /docker/jellyfin/config:/config
- /docker/jellyfin/cache:/cache
- /media/library:/library
restart: 'unless-stopped'