2024-09-28, 05:16 PM
Sure. Here's the Docker compose file I'm using:
This is running on a Ubuntu 24.04.1 LTS (GNU/Linux 6.8.0-45-generic x86_64) VM. I mounted /mounts/docker and /mounts/media using these /etc/fstab entries:
Jellyfin appears to have no other problems, just this transcoding issue. Also, not sure if it's relevant, but the transcodes are kicked off by Finamp downloading songs to my phone, which I have set to reduce the file sizes.
Code:
services:
jellyfin:
environment:
- "DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=0"
image: "docker.io/jellyfin/jellyfin:10"
network_mode: "bridge"
ports:
- "34343:8096/tcp"
restart: "unless-stopped"
volumes:
- "/mounts/docker/jellyfin/cache:/cache"
- "/mounts/docker/jellyfin/config:/config"
- "/mounts/media/media:/general-media"
This is running on a Ubuntu 24.04.1 LTS (GNU/Linux 6.8.0-45-generic x86_64) VM. I mounted /mounts/docker and /mounts/media using these /etc/fstab entries:
Code:
//nas.home/docker /mounts/docker cifs rw,credentials=/home/jacob/.smb,iocharset=utf8,vers=3.0,noperm,file_mode=0777,dir_mode=0777 0 0
//nas.home/media /mounts/media cifs rw,credentials=/home/jacob/.smb,iocharset=utf8,vers=3.0,noperm,file_mode=0777,dir_mode=0777 0 0
Jellyfin appears to have no other problems, just this transcoding issue. Also, not sure if it's relevant, but the transcodes are kicked off by Finamp downloading songs to my phone, which I have set to reduce the file sizes.