Impossible to see plex server in docker

Hello,

I tried to start a plex server with docker (first with swarm but then simply with docker compose to keep it simple).
I use the example docker from https://github.com/plexinc/pms-docker/blob/master/docker-compose-host.yml.template, I tried the “host” one too but it’s the same result.

I have a screen after connection but no wizard and no server found.

My file look like this:

version: '2'
services:
  plex:
    container_name: plex
    image: plexinc/pms-docker
    restart: unless-stopped
    environment:
      - TZ=Europe/France
      - PLEX_CLAIM=claim-XXXXXXXXXXXXXXXXXXXXXX
    network_mode: host
    volumes:
      - /srv/plex/config:/config
      - /srv/plex/transcode:/transcode
      - /srv/tvshow:/data

I also tried with the port sections but it changes nothing:

    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

I access it directly with my Ip Address on port 32400.

I have the same issue than this person but no solution.

Sincerly

No one have an idea ?

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