Hello,
I need some help with plex/jellyfin (I have the same difficulty with both.) Note that I am brand new to Linux and Self-hosting, I’m using the home media server as a cool and useful project to learn Linux before moving away from Windows as I acknowledge I have a lot to learn in Linux before considering migrating in a smooth manner.
I’m here to learn and I don’t request to be spoon-fed a solution because I would ideally like to end up knowing more and be able to solve this myself next time.
Description of project: I’m trying to setup a local home media server running on 192.168, nothing fancy online.
The comments below helped. My docker run was wrong and missing a source:target. Eventually I got it working and on my way also learned how to map an NTFS external drive with fstab! My media server is up and running!
Debian Bookworm
Install Plex on the Debian bookworm laptop and access music library locally
Library /home/user/media/data is seen and added to Plex but no actual files or sub-directory are then located |
Ran in docker container
How I setup plex’s docker:
sudo docker run \
-d \
--name plex \
--network=host \
-e TZ="<timezone>" \
-e PLEX_CLAIM="*My claim got I got online*" \
-v /home/*user*/.config/plex/config \
-v /home/*user*/plex/transcode \
-v /home/*user*/media/data \
plexinc/pms-docker
What I have tried/noticed:
I’m out of ideas with my limited and new knowledge. Can you help me out? I can provide screenshots and more detailed information, just tell me what you need.
A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don’t control.
Rules:
Be civil: we’re here to support and learn from one another. Insults won’t be tolerated. Flame wars are frowned upon.
No spam posting.
Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it’s not obvious why your post topic revolves around selfhosting, please include details to make it clear.
Don’t duplicate the full text of your blog or github here. Just post the link for folks to click.
Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).
No trolling.
Resources:
Any issues on the community? Report it using the report flag.
Questions? DM the mods!
Your want your media volume to link to your media folder outside of docker.
Below volume definition line is outside:inside
-v /home/user/media/data:/media
docker run -d
–name my_container
-v my_volume:/path/inside/container
image_name
Thanks, that was the problem. I read the docs and I got it.
Your volume mounts seems to be incorrect. According to Plex docker readme, the volume mounts should be like this:
Thanks, that helped.
Can I create several -v paths for different media locations or should I just move all data into the one folder mapped?
That’s up to you how to organize it, just do whatever thing most logical for you. I myself usually went with this setup:
/var/lib/docker
path. That docker directory tend to grow larger and larger over time so I don’t want it to suddenly fill up my root partition when I’m not looking. You may not need to do this if you plan to create just a handful of containers in your machine./var/lib/host-path
. Depending on what kind of disks available in the host, I may have an SSD or HDD partition mounted inside that directory (or both, or not at all so it’ll use the root partition)./var/lib/host-path/HDD/Plex
. If the container requires multiple volumes, just put them as a sub directory there, e.g./var/lib/host-path/HDD/Plex/Movies
,/var/lib/host-path/HDD/Plex/configs
etc.I’ll add that you should consider putting the database on a SSD in a separate location for better performance and so you can make backups more easily. That’s one of the benefits of docker in that you can easily make your own dir structure that suits your needs.
I use /containers/appdata/<container name> for config data but you can use any structure you like. I wouldn’t use ~/.config as that may conflict with non-container data.
That’s it! If you don’t specify a host path, i.e. the path before the colon, Docker will create an volume which saves any changes you make to that path in the container, but won’t mount any existing path from the host to the container.
This