[Solved] Docker image doesn't seem to start properly anymore

Server Version#: 1.31
Player Version#: N/A

Hi,

Long-time user of Plex here. I’ve been running the Linuxserver image for about 5 or 6 years now on my OMV box, and generally haven’t had any problems. A couple of months ago though, the server seems unresponsive. Despite clearing out the config folder and starting afresh, I’m unable to connect to the server’s webpage.

My suspicion is that this is related to my also relatively recent pi-hole upgrade, although I’ve scoured the pihole forums for hints as to what to do with no great luck. There are no obvious blocked requests coming from the server, and have added a rebind for plex.direct to the dnsmasq config, but that doesn’t seem to have helped.

Docker compose config looks like:

---
version: "3"
services:
  plex:
    image: lscr.io/linuxserver/plex:latest
    network_mode: host
    container_name: plex
    hostname: <redacted>
    environment:
      # - PUID=990
      # - PGID=987
      - VERSION=docker
      - PLEX_CLAIM=claim-yesyesyesitwasnotthisone
    volumes:
      - plex_config_new:/config
      - /srv/trove/music:/music:ro
    restart: unless-stopped
    labels:
      - com.centurylinklabs.watchtower.enable:false

volumes:
  plex_config_new:
    external: true

Uncommenting the PUID and PGID values doesn’t help, but was trying to run as root just to see if there were permission issues (TL;DR - there weren’t).

Totally stumped at this point, if anyone has any ideas at all that could help, would love to hear them. Please let me know if you need more info.

Thanks,

PK.

Logs.zip (118.2 KB)

Replying to myself, issue was with running the container using Portainer. Switching to compose got it all running again properly. So user error in the end…

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