I own a Mac M1 and I run Docker on it. On OSX, Docker can run native ARM images but also emulate x86/amd64 to run images that were not built for ARM.
My question is simple: From the command line, I am trying to find an extension of the command 'docker image ls' which displays the image platform.
$ docker image ls
REPOSITORY TAG PLATFORM IMAGE ID CREATED SIZE
.............................arm64
.............................x86
I already saw this answer: How to filter Docker images by platform? but it does NOT answer the question. OS and PLATFORM are two different things.
Thank you