I’m using the official Docker container of PMS and I’ve media stored across different drives. Unfortunately, I can’t find a way to add multiple data sources.
The Docker documentation reads:
-v <path/to/media>:/data
This is provided as examples for providing media into the container. The exact structure of how the media is organized and presented inside the container is a matter of user preference. You can use as many or as few of these parameters as required to provide your media to the container.
When I add multiple :/data parameters in my compose file, the source picker interface in Plex only shows me the last entry. Or the “music” folder in this example:
The part after the : is the target directory inside the container to which you’re mapping the external data source. You can’t map multiple source paths as the exact same mount point / target directory.
Ok, got it. I thought all the source folders provided in the compose file would just be mounted inside of the same /data folder. So I basically have to point each volume entry to a different location like /data1, /data2, /data3, and so on.
Note that while Plex recommends using /data you can set it to anything provided it doesn’t correspond to another directory in the container that is being used for something (e.g if you set it to /etc that would break things).