![]() |
Jellyfin hosted on OS5 - Printable Version +- Jellyfin Forum (https://forum.jellyfin.org) +-- Forum: Support (https://forum.jellyfin.org/f-support) +--- Forum: Guides, Walkthroughs & Tutorials (https://forum.jellyfin.org/f-guides-walkthroughs-tutorials) +--- Thread: Jellyfin hosted on OS5 (/t-jellyfin-hosted-on-os5) |
Jellyfin hosted on OS5 - PepeTech - 2025-08-02 Hello, I'm having issues figuring out how to get this all setup. I have a WD PR2100 running OS5 Ver. 5.31.102. I installed docker on it no issues with a .bin file and i'm able to SSH into it and get logged in. I then ran the command to install jellyfin with docker pull jellyfin/jellyfin. From there i'm getting confused on how to rest of this work. I'm kind a noob when it comes to coding and been racking my brain to make this work so I don't have to rely on plex anymore. Any and all help would be greatly apprecaited. 5.31.102 5.31.102 5.31.102 RE: Jellyfin hosted on OS5 - PepeTech - 2025-08-02 Update to my current issue. my WD PR2100 is networked and I can see and reach it on my main computer for its file shares no issue. WHen trying to run docker and configure the jellyfin and create the compose fil this is the command im trying to run. Note Data-ocean is the name of my PR2100 and the name of the folders that im trying to map are labeled as Archives Vol.1 Archives Vol. 2 and Archives Vol. 3 I feel like I should also mention that this device is on the network and not directly connected to my PC. "docker run -d \" "--name jellyfin \" "-p 8096:8096 \" "-v /data-ocean/jellyfin/config ![]() "-v /data-ocean/jellyfin/cache ![]() "-v /data-ocean/archives vol. 1 ![]() "-v /data-ocean/archives vol. 2 ![]() "-v /data-ocean/archives vol. 3 ![]() "jellyfin/jellyfin" What i get is docker: invalid reference format the slant faces are Colon and forward slash RE: Jellyfin hosted on OS5 - Efficient_Good_5784 - 2025-08-02 Try running the following: Code: docker run -d \ I think it has to do with you enclosing the entire lines with "". |