Plex Docker image on Raspberry Pi

Hi there.

I’m a newbie in plex and docker. Now, I’m trying to setup the plex docker image on my raspberry pi, but I can not connect to plex website after start docker container.

I use lsioarmhf/plex image and created docker container like this:

docker create \
 --name=plex \
 --net=host \
 -e PUID=1001 -e GUID=1001 \
 -e TZ=Europe/Zurich \
 -v /mnt/_Plex:/config \
 -v /mnt/DVDs:/movies \
 -v /var/tmp/plex_transcode:/transcode \
 lsioarmhf/plex

But if I want to connect [IP]:32400/web it does not connect to plex server.

Do I use a wrong docker image? Should I use a linuxserver/plex:arm32v7 or arm64v8 image?

Thanks.

just use linuxserver/plex

Your machine will pull the correct image for the host, if this is a Rpi 1 or zero I can tell you it will not work as this image is armv7 only.
If you are using raspian with a Rpi 2 that will also not be compatible.

It is a Raspberry Pi 3 Model B + (ARMv8).
Ok, I will use this image. Thanks.