docker-node icon indicating copy to clipboard operation
docker-node copied to clipboard

error docker pull arm32v6/node

Open tomboul26 opened this issue 1 year ago • 2 comments

Hello, When i install arm32v6/node i have this error :

Error response from daemon: manifest for arm32v6/node:latest not found: manifest unknown: manifest unknown

tomboul26 avatar Nov 22 '24 07:11 tomboul26

oups sorry, his project is desactived : https://doi-janky.infosiftr.net/job/multiarch/job/arm32v6/job/node/

tomboul26 avatar Nov 22 '24 07:11 tomboul26

https://doi-janky.infosiftr.net/job/multiarch/job/arm32v6/job/node/

Apologies, those jobs are no longer used for the builds as we have just finished migrating to a slightly different process. They are a bit more complex to follow but are now under https://doi-janky.infosiftr.net/job/meta/ (and our FAQ should be updated soonish to describe it).

https://github.com/docker-library/official-images/blob/6f7806fe7990db1dda7b2c9e51e079669c511148/library/node is the canonical source of which tags are supported on which architecture (and thus controls when we push to the arch-specific namespaces like arm32v6/ on Docker Hub).

arm32v6/node has never has a latest tag, but there are other tags that are updated there (only alpine based, since Debian only supports v7 and v5 of arm32)

The other problem you might hit is that the images in the arch-specific repos (like https://hub.docker.com/r/arm32v6/node) are now image indexes and so require you to specify the platform via the --platform flag if it is different from your OS arch (https://github.com/docker-library/python/issues/933#issuecomment-2195285004):

$ docker pull --platform linux/arm/v6 arm32v6/node:22-alpine

yosifkit avatar Nov 22 '24 21:11 yosifkit