Server Version#: 1.32.6.7371
Player Version#:
<If providing server logs please do NOT turn on verbose logging, only debug logging should be enabled>
After migrating my Plex to Linux Mint & Docker i’ve been unable to connect remote access and every device but the Plex machine itself plays back in indirect mode, including devices on the same network. Navigating to http://192.168.0.219:32400/ only works on the Plex host machine.
Solutions i’ve tried without success:
-Install linuxserver/plex (currently using)
-Install official pms-docker
-Install official native plex .deb package
-Port forward 32400 in router
-Manually specify port 32400 in plex settings
-Change DNS on server
-Change IP address on server
-Disable PiHole
-Restart server & container
Docker compose file:
version: ‘3.8’
services:
plex:
container_name: plex
image: lscr.io/linuxserver/plex
restart: unless-stopped
network_mode: host
environment:
- TZ=Europe/Stockholm
- PUID=1000
- PGID=1000
- VERSION=latest
- PLEX_CLAIM=(my code)
volumes: - ./config:/config
- /media/jhn/RED/Media/Movies:/movies
- /media/jhn/RED/Media/Tv:/tv
tmpfs: - /transcode
deploy:
resources:
reservations:
devices: - driver: nvidia
count: all
capabilities: [gpu]