I’m running docker on Debian 12, and installed docker via the docker desktop instructions for Debian.
all of the directories are owned by my user and group (1000).
when I go to http://localhost:32400/web, firefox is unable to connect, I’ve also tried from other devices on my network using the pc’s IP address. I’m at a loss for what else I could do to troubleshoot.
I started the container using docker compose with the following .yml file:
---
version: "2.1"
services:
plex:
image: lscr.io/linuxserver/plex:latest
container_name: plex
network_mode: host
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/EST
- VERSION=docker
- PLEX_CLAIM= #optional
volumes:
- /home/pacmanpence/Containers/Plex/Library:/config
- /mnt/Media:/media
restart: unless-stopped
these are the logs I get after running/restarting the server:
2024-01-12 13:04:55 [migrations] started
2024-01-12 13:04:55 [migrations] no migrations found
2024-01-12 13:04:55 usermod: no changes
2024-01-12 13:04:55 ───────────────────────────────────────
2024-01-12 13:04:55
2024-01-12 13:04:55 ██╗ ███████╗██╗ ██████╗
2024-01-12 13:04:55 ██║ ██╔════╝██║██╔═══██╗
2024-01-12 13:04:55 ██║ ███████╗██║██║ ██║
2024-01-12 13:04:55 ██║ ╚════██║██║██║ ██║
2024-01-12 13:04:55 ███████╗███████║██║╚██████╔╝
2024-01-12 13:04:55 ╚══════╝╚══════╝╚═╝ ╚═════╝
2024-01-12 13:04:55
2024-01-12 13:04:55 Brought to you by linuxserver.io
2024-01-12 13:04:55 ───────────────────────────────────────
2024-01-12 13:04:55
2024-01-12 13:04:55 To support LSIO projects visit:
2024-01-12 13:04:55 https://www.linuxserver.io/donate/
2024-01-12 13:04:55
2024-01-12 13:04:55 ───────────────────────────────────────
2024-01-12 13:04:55 GID/UID
2024-01-12 13:04:55 ───────────────────────────────────────
2024-01-12 13:04:55
2024-01-12 13:04:55 User UID: 1000
2024-01-12 13:04:55 User GID: 1000
2024-01-12 13:04:55 ───────────────────────────────────────
2024-01-12 13:04:55
2024-01-12 13:04:55 **** Server is unclaimed, but no claim token has been set ****
2024-01-12 13:04:55 Docker is used for versioning skip update check
2024-01-12 13:04:55 [custom-init] No custom files found, skipping...
2024-01-12 13:04:55 Starting Plex Media Server. . . (you can ignore the libusb_init error)
2024-01-12 13:04:56 [ls.io-init] done.
2024-01-12 13:05:08 Critical: libusb_init failed
I’ll post the log from plex media server in the comments, as it is too long to fit here.