so, i use docker on my qnap ts653d and i reinstalled plex and all of a sudden i can’t use plex server, can’t see no options to add libraries etc tried several reinstalls, including totally fresh with a YML i know works, deleted ALL the plex installation and redownloaded the docker image and tried again… same thing, i go to my local ip and i get the webui but it literally as if there is no server, it can’t be seen at all, the only logical solution is something PLEX SIDE stopping this ?
Did you use the PLEX_CLAIM token to create?
(reminder: the token is only valid for 5 minutes )
no, i havent acutally, where at this point (no sever) can i find the claim token id ?
I use this method
[chuck@lizum ~/docker.517]$ cat dockerplex
sudo docker stop plex
sudo docker rm plex
# Remove old image if exists
Image="$(sudo docker images | grep -i plex | awk '{print $3}')"
if [ "$Image" != "" ]; then
sudo docker stop plex
sudo docker stop plex
sudo docker rm plex
sudo docker rmi -f $Image
fi
sudo docker run \
-d \
--name plex \
--network=host \
-e PLEX_CLAIM="claim-qrrDP584AkBPeCQtsiyR" \
-e TZ="EST" \
-e LANG="en_US.UTF-8" \
-e PLEX_UID=1001 \
-e PLEX_GID=1001 \
-e PUID=1001 \
-e PGID=1001 \
-h dockerplex \
-v /mnt2/dockerplex:/config \
-v /mnt2/dockerplex/tmp:/tmp \
-v /mnt2/dockerplex/transcode:/transcode \
-v /nas:/data \
--device=/dev/dri:/dev/dri \
plexinc/pms-docker:plexpass
#docker start plex
#docker update --restart=unless-stopped plex
[chuck@lizum ~/docker.518]$
I obtain an updated token from https://plex.tv/claim
I copy it and paste into the script
I run the script to remove the old image, download fresh, and create a container using the existing installation (/config) data.
LEGEND, so, i didnt use the script you provided but i did pretty much the exact thing via portainer and now it is working, bit of a ballache that but hey ho, thanks so much for the fast response to enable me to fix this, appreciated