I’m running into an interesting problem trying to get a plex container up and running. Below is my compose file and server specs. Essentially, I have the config volume mounted to a volume on my server, but when I get the server running and look for my libraries, the tv and movies directories don’t exist in the container. And when I look from the server side in the config directory, there’s nothing inside of it even though the container sees all its configuration files. Any ideas?
we do not support our /config mounts on file-based remote mounts. (which smb and nfs would be) mostly because /config is where we usually keep the app databases and databases do not support file based remote mounts.
in your case, docker is probably starting before your mount is mounted, which is why you see data inside the container and not outside the container. if you fix that you’ll see the data consistently, though you will still be using an unsupported setup.