You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently trying to setup the project using the following docker-compose.yml content: pihole-exporter: environment: - PIHOLE_HOSTNAME=192.168.0.153 - PIHOLE_PASSWORD=abcmypassword - PORT=9617 ports: - 9617:9617 image: ekofr/pihole-exporter:latest
which doesnt work with the logs showing: exec ./pihole-exporter: exec format error
Also tried using the API Token instead of the password, which isn't working either.
Any Ideas?
The text was updated successfully, but these errors were encountered:
@PapaTim68 this is usually related to cpu architecture error, ex program is built for use in amd64 but is run on arm64, check the image arch using docker image inspect --format '{{.Architecture}}' repo/image:tag and proccessor arch uname -m.
you could define the architecture using the platform: linux/amd64 on the docker compose if the image is being pulled incorrectly.
Currently trying to setup the project using the following docker-compose.yml content:
pihole-exporter: environment: - PIHOLE_HOSTNAME=192.168.0.153 - PIHOLE_PASSWORD=abcmypassword - PORT=9617 ports: - 9617:9617 image: ekofr/pihole-exporter:latest
which doesnt work with the logs showing:
exec ./pihole-exporter: exec format error
Also tried using the API Token instead of the password, which isn't working either.
Any Ideas?
The text was updated successfully, but these errors were encountered: