Repeated crash loop when running with Docker

I’m trying a new server, and I’ve used both the plexinc/pms-docker and linuxserver images. I get errors like this in Docker logs:

Starting Plex Media Server. . . (you can ignore the libusb_init error)
plex    | ****** PLEX MEDIA SERVER CRASHED, CRASH REPORT WRITTEN: /config/Library/Application Support/Plex Media Server/Crash Reports/1.32.1.6999-91e1e2e2c/PLEX MEDIA SERVER/703357cc-00b1-44ce-4146af8d-c1d5b8c6.dmp
plex    | Starting Plex Media Server. . . (you can ignore the libusb_init error)
plex    | Critical: libusb_init failed

I’ve attached the log file mention above.

703357cc-00b1-44ce-4146af8d-c1d5b8c6.dmp.log (57.1 KB)

Here is my docker-compose.yml

version: '3.3'
services:
  plex:
    container_name: plex
    image: lscr.io/linuxserver/plex:latest
    restart: unless-stopped
    environment:
      - TZ=America/New_York
      - PLEX_CLAIM=claim-xYNQMx_CgHwUCxuB5krR
      - PUID=1001
      - PGID=1002
      - VERSION=public
    network_mode: host
    devices: 
      - "/dev/dri:/dev/dri"
    volumes:
      - config:/config:nocopy
      - data:/data:nocopy

volumes:
  data:
    driver: local
    driver_opts:
      type: nfs
      o: nfsvers=4,addr=freenas.internal.mikeyp.net,rw
      device: ":/mnt/vault/media"
  config:
    driver: local
    driver_opts:
      type: nfs
      o: nfsvers=4,addr=freenas.internal.mikeyp.net,rw
      device: ":/mnt/vault/container-storage/plex"

DMP logs don’t tell us anything.

Hard crashes at start are usually permission problems.
When it gets into a loop – SERIOUSLY look at the container config & permissions.

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