2024-03-13, 06:55 PM
Currently have a mounted folder /media-storage which is auto mounted on startup. Im running ubuntu server lastest. Below is my docker-compose.yml file. For some reason it cant see the media in any of the folders. Ive looked online and must posts just talk about user/group jellyfin but i do not have any group or user called jellyfin so i have no clue what im doing wrong
Code:
version: "3"
services:
jellyfin:
image: lscr.io/linuxserver/jellyfin:latest
container_name: jellyfin
environment:
- PUID=1000
- PGID=1000
volumes:
- ./data/jellyfin:/config
- /media-storage/data/media/music:/music
- /media-storage/data/media/anime:/anime
- /media-storage/data/media/movies:/movies
- /media-storage/data/media/tv:/tv
ports:
- 8096:8096
restart: unless-stopped
network_mode: bridge