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
For reference, I think this issue relates to this error:
WARNING: The requested image's platform (linux/amd64) does not match the detected host platform (linux/arm64/v8) and no specific platform was requested
You typically see this because you are attempting to make use of cmd.cat on an Apple Silicon (M1/M2/M*) Mac. The root cause is that the images are only generated for the x86 platform. (Platform = Architecture * OS)
The current workaround is to explicitly let docker engine know that you want the x86 version of the image, e.g. for 64-bit:
$ docker run -it --rm --platform linux/amd64 cmd.cat/python2.7
can you plase add multiarch support / multi_arch_container?
The text was updated successfully, but these errors were encountered: