I am trying to pull the rethinkdb image on my mac m1 but it says
“no matching manifest for linux/arm64/v8 in the manifest list entries”
Please help me out…
Share and learn in the Docker community.
I am trying to pull the rethinkdb image on my mac m1 but it says
“no matching manifest for linux/arm64/v8 in the manifest list entries”
Please help me out…
Same issue, did you figure it out?
Nope… I tried to install rethinkdb manually and it worked. But the docker file is still not working…
I found official answer here in known issues: Docker Desktop for Apple silicon | Docker Documentation
“Not all images are available for ARM64 architecture. You can add --platform linux/amd64
to run an Intel image under emulation.”
I added platform to docker file before image and it works!
platform: linux/amd64
image: rethinkdb
Thank you… It worked…
--platform linux/amd64
is exactly what i needed too!