Docker Problem

Server Version#: newest plexinc/pms-docker image

Hi,

I wanted to create a plexserver into a docker container.
So I found: GitHub - plexinc/pms-docker: Plex Media Server Docker repo, for all your PMS docker needs.

I created a own docker-compose file with:

 plex:
        container_name: plex
        image: plexinc/pms-docker
        restart: always
        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/Berlin
            - PLEX_CLAIM=myKEY
            - ADVERTISE_IP=http://domain.de:32400/

        hostname: Unlimited-Media
        volumes:
            - ./config/plex/:/config
            - ./data/plex/transcode:/transcode
            - ./data/plex/media/:/data

Now I can reach domain.de:32400/ and 192.168.178.52:32400 (lan-ip) and there is the plex-server landing page, but there is no Server listed:

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