Linuxserver/PLEX Container Issues

This is a question that is bordering on two issues. I have a docker machine running where I recently installed the PLEX container from linuxserver/plex. The current problem is that I cannot access the site to configure PLEX https://localhost:32400/web. In my attempts to determine why this is occurring, I noticed that port 32400 appeared to be closed even though it should’ve been opened when the container was created, I am using the host network. I cannot figure out why I can’t access the machine itself, everything looks fine but here is the port thing I’m referring too and possibly why its not working…Also here is what I used to create the docker container

–name=plex
–net=host
-e VERSION=latest
-e PUID=1001 -e PGID=1001
-e TZ=Americas/Chicago
-v /home/docker/plex/config:/config
-v /home/docker/plex/movies:/data/movies
-v /home/docker/plex/tvshows:/data/tvshows
-v /home/docker/plex/sports:/data/sports
-v /home/docker/plex/transcode:/transcode
linuxserver/plex

I attempted to see if I could access the site using curl

curl -i http://localhost:32400 
curl -i http://10.0.1.200:32400

I then verified open ports with NMAP

#nmap 10.0.1.200

Starting Nmap 6.40 ( http://nmap.org ) at 2019-01-18 12:52 CST
Nmap scan report for 10.0.1.200
Host is up (0.00049s latency).
Not shown: 999 closed ports
PORT   STATE SERVICE
22/tcp open  ssh

Nmap done: 1 IP address (1 host up) scanned in 0.10 seconds

So clearly port 32400 is not open, so I went to firewall-cmd

#sudo firewall-cmd --get-active-zones
#sudo firewall-cmd --zone=public --add-port=32400/tcp --permanent
#sudo firewall-cmd --reload

I also checked to see if it was open

#sudo firewall-cmd --zone=public --list-ports
32400/tcp

However, NMAP still shows its closed. Any idea why firewalld would show an open port on the docker host machine but it is actually closed? I’m not even sure this will get the site working for Plex but this can’t be helping…

try to check if the container is running with

docker ls

Remembered a time where had to restart the machine for the ports to be taken by the container. Try that and let us know.

Also the plex container logs may help to see what is happening.