jsclayton / prometheus-plex-exporter

Export metrics from your Plex Media Server
GNU Affero General Public License v3.0
117 stars 13 forks source link

Error on startup #18

Open EtzBetz opened 10 months ago

EtzBetz commented 10 months ago

Hello, when running this container via docker-compose in portainer, on a Raspberry Pi 4, I only get this error as output:

standard_init_linux.go:219: exec user process caused: exec format error

My docker-compose for the container looks like this:

---
version: '3.8'

services:
  prom-plex-exporter:
    image: ghcr.io/jsclayton/prometheus-plex-exporter
    ports:
      - 9001:9000/tcp
    environment:
      PLEX_SERVER: <Plex Server URL> (yes i changed this on the deployment)
      PLEX_TOKEN: <Plex Admin Token> (yes i changed this on the deployment)

Is the image compatible with raspberry pi? Or do you see any other error here?

edit: running this locally on macos(intel) works just fine

jzucker2 commented 10 months ago

It doesn't seem like this builds anything but default images, which is likely amd64

If it says 32 bit, you

EtzBetz commented 10 months ago

It doesn't seem like this builds anything but default images, which is likely amd64

If it says 32 bit, you

what do you mean by the 2nd sentence?

craigvphillips commented 6 months ago

Is the image compatible with raspberry pi? Or do you see any other error here?

No. I assume you have this fixed by now? I had to build the go binary on my pi, and then create a new docker image with that ARM binary.

EtzBetz commented 6 months ago

Is the image compatible with raspberry pi? Or do you see any other error here?

No. I assume you have this fixed by now? I had to build the go binary on my pi, and then create a new docker image with that ARM binary.

No, I haven't yet. Wasn't a big priority.