docker icon indicating copy to clipboard operation
docker copied to clipboard

Image not working on ARMv6

Open A---- opened this issue 5 years ago • 1 comments

Although advertised as such, Matomo image doesn't seem to work on my Raspberry PI (Raspbian Buster).

When pulled, I do have an ARM image :

$ docker image inspect matomo | grep Archite
                      "Architecture": "arm",

Though it does not start (it does nothing at all, no logs, nothing in debug 🤷‍♂️ ).

I build the image using buildx (--platform linux/arm/v6) and it now works. No layer in common but that may be because of the buildx process (?).

A---- avatar Apr 13 '20 15:04 A----

arm32v6 is only supported for the Alpine variant: https://github.com/docker-library/official-images/blob/master/library/matomo#L16

J0WI avatar Sep 12 '20 14:09 J0WI