Server claiming with docker image

I have installed PMS with the official docker image, with the following dockercompose (IPand claim token obfuscated):

plexms:
container_name: plexms
restart: always
image: plexinc/pms-docker
volumes:
- /home/someguy/plex/config:/config
- /home/someguy/docker/plex_tmp:/transcode
- /home/someguy/plex/media:/media
- /home/someguy/docker/shared:/shared
ports:
- “32400:32400/tcp”
- “3005:3005/tcp”
- “8324:8324/tcp”
- “32469:32469/tcp”
- “1900:1900/udp”
- “32410:32410/udp”
- “32412:32412/udp”
- “32413:32413/udp”
- “32414:32414/udp”
environment:
- TZ=Americas/Los_Angeles
- HOSTNAME=“Docker Plex”
- PLEX_CLAIM=“claim-qGagfqdgaerg3xY”
- PLEX_UID=1001
- PLEX_GID=1001
- ADVERTISE_IP="http://111.111.111.11:32400/

When I go to my public IP 111.111.111.11:32400/web I am able to sign into Plex but my server does not seem to be connecting to my account. I searched the forums and found a few older threads but the only suggestion was that the claim token might be expired. I have, as a troubeshooting step, picked up a new claim token and immmediately ran docker-compose -f ~/docker/docker-compose.yml up -d then tried to log in again. No difference.

I also switched over to the linuxserver/plex docker image with host networking to see if it was a port forwarding issue. The same thing happens there.

What the heck am I missing here?

Not knowing docker, but try this:

2 Likes

That did the trick, thank you!

1 Like

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