Plex Homepage not loading 1.40.0.7998

I don’t know what you mean by “tag”.

That is the most recent version of server.

i’m using the docker version of plex, which you can get from (https://hub.docker.com/r/plexinc/pms-docker/tags), you can specify a tag which will pull down that specific version of the listed app

i was using 1.32.8.7639-fb6452ebf, while 1.40 was broken

when 1.40.1 was released, i used latest which is what i normally use which keeps plex up to date , and the homepage still wouldn’t load

i then tried 1.40.1.8227-c0dd5a73e and the homepage loaded

i thought it weird, so i tried it switching between latest and 1.40.1, which should be the same thing, but for me its not

No, it works. Here you can see what is the latest tag used for. Have you pulled the image? Inspect your local image with :latest tag.

> docker image pull  plexinc/pms-docker:latest
latest: Pulling from plexinc/pms-docker
63e9bbe32327: Pull complete 
6229344c5f25: Pull complete 
6f9a6877ffc3: Pull complete 
01265d96f5f0: Pull complete 
Digest: sha256:324d3c66305259ffbeb129d689bb846f549a46f147238510a71d456845f97368
Status: Downloaded newer image for plexinc/pms-docker:latest
docker.io/plexinc/pms-docker:latest

> docker image inspect plexinc/pms-docker:latest | grep version
                "org.opencontainers.image.version": "1.40.1.8227-c0dd5a73e"

ok, this is weird

docker run
  -d
  --name='Plex-Media-Server'
  --net='host'
  -e TZ="***"
  -e HOST_OS="Unraid"
  -e HOST_HOSTNAME="***"
  -e HOST_CONTAINERNAME="Plex-Media-Server"
  -e 'PLEX_CLAIM'='claim-***'
  -e 'PLEX_UID'='99'
  -e 'PLEX_GID'='100'
  -e 'VERSION'='latest'
  -l net.unraid.docker.managed=dockerman
  -l net.unraid.docker.webui='http://[IP]:[PORT:32400]/web'
  -l net.unraid.docker.icon='https://raw.githubusercontent.com/plexinc/pms-docker/master/img/plex-server.png'
  -v '/tmp/':'/transcode':'rw'
  -v '/mnt/user/appdata/Plex/data/':'/data':'rw'
  -v '/mnt/user/':'/0-UnRAID_Shares':'rw'
  -v '/mnt/user/appdata/Plex-Media-Server':'/config':'rw' 'plexinc/pms-docker:latest'
d5075bac497436df77b27680ff96d673b68481bc1a2fefb5a1f450a0c3422f63

the latest tag is pulling the broken version for me

docker image inspect plexinc/pms-docker:latest | grep version
                "org.opencontainers.image.version": "1.40.0.7998-c29d4c0c8"

this appears to be a known issue with docker as i just found this StackOverflow post

My apologies, im gonna look into getting unraid-docker to force a pull on the latest tag instead of just using an image thats already there
i manually ran your docker pull command, looks like that fixed it

Not sure about your exact issue, but did you try to pull the image manually before running docker run? Or you can remove your local image and then docker run should probably trigger the pull on it’s own.

docker image pull  plexinc/pms-docker:latest
#or
docker image ls
docker image rm <IMAGE ID>

thats what i wound up doing
i ran docker image pull plexinc/pms-docker:latest in the unRAID CLI, and then restarted Plex
its now reporting 1.40.1

i removed older and non tagged plex images from docker, and now it shows 2 entries which im fine with

BEFORE
REPOSITORY                         TAG                     IMAGE ID       CREATED        SIZE
plexinc/pms-docker                 1.40.1.8227-c0dd5a73e   b5f94a3d845b   10 days ago    345MB
plexinc/pms-docker                 latest                  b5f94a3d845b   10 days ago    345MB
plexinc/pms-docker                 <none>                  d71546acae43   5 weeks ago    346MB
plexinc/pms-docker                 1.32.8.7639-fb6452ebf   d95211145e62   3 months ago   326MB

AFTER
REPOSITORY                         TAG                     IMAGE ID       CREATED        SIZE
plexinc/pms-docker                 1.40.1.8227-c0dd5a73e   b5f94a3d845b   10 days ago    345MB
plexinc/pms-docker                 latest                  b5f94a3d845b   10 days ago    345MB

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.