Docker Plex return 50-plex-update: exited and don't find Server

Hi community,

I try to run official plexinc/pms-docker Docker image, but the logs return this :

[s6-init] making user provided files available at /var/run/s6/etc...exited 0.
[s6-init] ensuring user provided files have correct perms...exited 0.
[fix-attrs.d] applying ownership & permissions fixes...
[fix-attrs.d] done.
[cont-init.d] executing container initialization scripts...
[cont-init.d] 40-plex-first-run: executing... 
Plex Media Server first run setup complete
[cont-init.d] 40-plex-first-run: exited 0.
[cont-init.d] 50-plex-update: executing... 
[cont-init.d] 50-plex-update: exited 0.
[cont-init.d] done.
[services.d] starting services
[services.d] done.
Starting Plex Media Server.

I’ve access to my-ip:32400, but the app don’t find the server (looking in loop).

You can see my docker-compose.yml file :

version: '3'

services:
    plex:
        image: plexinc/pms-docker
        container_name: plex
        hostname: plex
        restart: always
        network_mode: "host"
        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=Europe/London
            - ADVERTISE_IP=http://${IP}:32400/
        volumes:
            - ${MOUNT_POINT}/plex-config:/config
            - ${MOUNT_POINT}/plex-config/transcode:/transcode
            - ${DOWNLOAD_PATH}:/data

Anyone can help me ?

Thank you community !

Is your server signed-in? Did you try the PLEX_CLAIM environment variable as mentioned in the instructions?

Arf, yes i work nice with this parameter ! I thought it was optional … Thank you @gbooker02

It does the server sign-in. You can remove it from subsequent runs because your server is now signed-in and it does nothing to a signed-in server (and the code expires in 5 minutes anyway).

The part of the server discovery that goes through plex.tv relies on the server being signed-in. The other discovery mechanisms are less reliable.

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