Adding outside NAS cifs/nfs folder to Jellyfin

Jellyfin is the Free Software Media System that puts you in control of managing and streaming your media. There are no strings attached, no premium licenses or features, and no hidden agendas.

Moderator: Lillian.W@AST

Post Reply
oldmanriver
Posts: 2
youtube meble na wymiar Warszawa
Joined: Mon Jul 05, 2021 7:10 am

Adding outside NAS cifs/nfs folder to Jellyfin

Post by oldmanriver »

Wondering if there is a path to adding an additional\outside\extra NAS mount to the jellyfin app or can you just install another instance from docker/portainer where you can add the additional paths. Not an expert in this at all but dont want to go poking around without a single clue :) Any help is apreciated, the snark/sarcasm is acceptable too. :D
User avatar
Nazar78
Posts: 2003
Joined: Wed Jul 17, 2019 10:21 pm
Location: Singapore
Contact:

Re: Adding outside NAS cifs/nfs folder to Jellyfin

Post by Nazar78 »

You got it there by installing and using portainer for reconfiguring your jellyfin container to add extra external paths then restart the container. Typically the setup is being done like this from the command line but with portainer you'll be more comfortable with GUI.

Code: Select all

docker rm -f Jellyfin>/dev/null 2>&1

docker create -i -t --name Jellyfin \
	--net=host \
	-v /etc/localtime:/etc/localtime:ro \
	-v /usr/builtin/etc/certificate/:/ssl/:ro \
	-v /share/Docker/Jellyfin/Config:/config:rw \
	-v /share/Docker/Jellyfin/Cache:/cache:rw \
	-v /share/Media:/media:rw \
	-v /share:/sharefolder:rw \
	--device=/dev/dri/renderD128 \
	--restart=unless-stopped \
	jellyfin/jellyfin:latest

docker start Jellyfin
AS5304T - 16GB DDR4 - ADM-OS modded on 2GB RAM
Internal:
- 4x10TB Toshiba RAID10 Ext4-Journal=Off
External 5 Bay USB3:
- 4x2TB Seagate modded RAID0 Btrfs-Compression
- 480GB Intel SSD for modded dm-cache (initramfs auto update patch) and Apps

When posting, consider checking the box "Notify me when a reply is posted" to get faster response
oldmanriver
Posts: 2
Joined: Mon Jul 05, 2021 7:10 am

Re: Adding outside NAS cifs/nfs folder to Jellyfin

Post by oldmanriver »

Many thanks for your reply :)
Post Reply

Return to “Jellyfin”