Container fails on startup
Taorni opened this issue · 1 comments
Output of docker inspect plex --format='{{index .Config.Labels.version}}'
:
1.18.7.2457-armhf
Description
Hello,
while starting the container for the first time with docker-compose, the following message get logged:
6 3000 /root/Library/Application Support
8192
Error in command line:the argument for option '--serverUuid' should follow immediately after the equal sign
Crash Uploader options (all are required):
--directory arg Directory to scan for crash reports
--serverUuid arg UUID of the server that crashed
--userId arg User that owns this product
--platform arg Platform string
--platformVersion arg Platform version string
--vendor arg Vendor string
--device arg Device string
--model arg Device model string
--sentryUrl arg Sentry URL to upload to
--sentryKey arg Sentry Key for the project
--version arg Version of the product
Thank you for taking your time for this issue.
Steps to reproduce the issue:
- Pull the image from docker hub
- Create a docker-compose.yml like described below
- docker-compose up -d && docker logs -f plex
Describe the results you received:
A used program outputs an parameter error. The plex server is not successfully started.
Describe the results you expected:
A running plex server in a docker container.
Additional information you deem important (e.g. issue happens only occasionally):
My docker-compose.yml looks like this:
version: '3'
services:
plex:
image: jaymoulin/plex
container_name: plex
restart: always
volumes:
- /mnt/data/media:/media
- /mnt/data/var/plex:/root/Library
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
network_mode: host
ports:
- "32400:32400/tcp"
- "5355:5353/udp"
After further research, this seems to be a problem with plex itself on my rpi4.
I'm closing this issue as it has nothing to do with your image.
Regards