Hi,
I’ve been struggling for a few days to fix my Plex Server setup since it broke down after working perfectly for about a week. Since then I’ve been all over the web searching for solutions, without any good results.
Setup:
RPi running Debian, trying to run a plex server alongside a couple of other containers in docker. Management & logging found with portainer.
The mounts for the movies & tvseries are on a shared folder from my Synology, but nothing changed there as they worked perfectly previously.
At first, the Plex container would get stuck on the next line:
Error in command line:the argument for option ‘–serverUuid’ should follow immediately after the equal sign
From there I started trying some things, so here’s a short list of methods I tried before posting here:
- pulling the bionic image,which worked for most people that had the same problem as me on the web, this resulted in the boot loop (stuck after Starting Plex Media Server.)
- deleting the config folders
- starting the server without the mounted drives from my Synology
- changing ipv6 to “0” in the Preferences.xml
- probably some other minor things which resulted in the boot loop…
here’s my docker command to start the server:
docker run -d
–name=plex
–net=host
-e PUID=1000
-e PGID=1000
-e VERSION=docker
-e PLEX_CLAIM= #optional
-v /home/pi/plexconfig:/config
-v /home/plex:/media
–restart unless-stopped
Is there something I’m missing here?
Thanks in advance