Server Version#: 1.19.4.2935-79e214ead
Hello,
I am facing the problem, that my Plex server is getting unreachable. I am running the server using the official docker image plexinc/pms-docker.
While the server is in unreachable state the load seams to be normal, could not observe any anomaly running top inside the container. The container itself is going to unhealthy state, thus even “curling” the server locally is failing.
It is always resolved by restarting the container. I can provide logs, which I have downloaded right after restarting the server after it was unreachable.
I have tried/done the follow already:
- Running in host mode
- Disable reserve proxy (server is reachable via https://plex.custom.tld and by exposing port 32400)
- whitelisted
plex.directin port rebinding protection of my openwrt router - running
linuxserver/plexdocker image
Here is the compose file, I am currently using:
version: "2"
services:
plex:
container_name: plex
image: plexinc/pms-docker:1.19.4.2935-79e214ead
restart: unless-stopped
ports:
- 32400:32400/tcp
networks:
- default
- reverse-proxy
environment:
- PLEX_UID=1000
- PLEX_GID=1000
- TZ=Europe/Berlin
volumes:
- /mnt/docker/plex/config:/config
- /mnt/media:/data
tautulli:
container_name: tautulli
image: tautulli/tautulli:v2.2.4
restart: unless-stopped
networks:
- default
- reverse-proxy
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Berlin
volumes:
- /mnt/docker/plex/tautulli:/config
- /mnt/docker/plex/config/Library/Application Support/Plex Media Server/Logs:/plex_logs:ro
networks:
default:
name: plex
reverse-proxy:
external:
name: reverse-proxy