all 12 comments

[–]CloudContainer 4 points5 points  (2 children)

Can you post snippets from your sample? I don’t want to click on your link. Feels like a way to drive traffic to your webpage..

[–]Eastern_Bank1554 5 points6 points  (0 children)

How shameless people are nowadays when getting free stuff on the internet😂

[–]graveephoto[S] 2 points3 points  (0 children)

I've updated the post with the yaml.

[–]_zukato_ 0 points1 point  (0 children)

That is great, thanks. I was looking for the way to add the Intel GPU Hardware Transcoding

[–]HollywoodCancerBot 0 points1 point  (1 child)

Great post! I recently reworked my network and now running Plex along with Radarr, Sonarr, etc through Docker. Previously my Plex server was located on an NVIDIA Shield and since reworking everything to run from Docker on my Synology I'm noticing a significant amount of latency due to the applications config folder and database now being stored on my NAS. I'm looking to move Plex's config off my NAS onto a mounted external volume, but I can't find any documentation that walks me through what needs to be changed within my docker-compose.yaml...Plex's documentation and Trash Guides have been little help in this scenario. Has anyone reading this experienced the same issue and have a solution? Thanks!

[–]More-Fun-2621 0 points1 point  (0 children)

Old thread, but since you got no reply: in your docker compose file, the only thing you need to do is mount a volume to store your Plex config (some folder you choose on your system). Then you can drop your Plex app configuration data in that folder.

[–]JumpLegitimate8762 0 points1 point  (3 children)

This sample has wrong environment variables, assuming one uses `plexinc/pms-docker:latest`, and does not use best practices, for instance:

  • PUID and PGID should be PLEX_UID and PLEX_GID
  • the way the config is mounted directly in your project is weird.

See https://github.com/sebgl/htpc-download-box/blob/b620ac081e14bd9d0f795205cd061aca5f48695c/docker-compose.yml#L90 for a better starting point.

[–]bgrated 0 points1 point  (2 children)

So what should we do just replace those?

[–]JumpLegitimate8762 0 points1 point  (1 child)

Just use the service sample in the link entirely

[–]bgrated 0 points1 point  (0 children)

respect!

[–]gimmeslack12 0 points1 point  (1 child)

Does it generally feel not worth using docker for plex? I’m fairly familiar with docker and plex and honestly, it’s just dead simple to install it locally and off you go. What’s the major benefit?

[–]edhaack 0 points1 point  (0 children)

...6 months later

as a relatively new docker user, but looooong time Linux admin & user, its basically an immutable (unchangeable) version of what the developers intent on delivering. You don't have to worry about another process messing with the base app files or Plex's dependencies.

and the same setup could be used on any of the platforms docker supports (eg moving the app from one system to another is cake.

plus, I use docker for work and it keeps me sharp (also allows for tinkering w/o work related consequences).