Docker pull rethinkdb is not working on apple m1

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… :slight_smile:

2 Likes

--platform linux/amd64 is exactly what i needed too! :smiling_face_with_three_hearts: