microsoft / vscode-docker

Docker Extension for Visual Studio Code
https://marketplace.visualstudio.com/items?itemName=ms-azuretools.vscode-docker
Other
1.18k stars 508 forks source link

[FEATURE]: add architecture display in images view #4207

Closed fredleger closed 5 months ago

fredleger commented 5 months ago

Would be nice to add architecture filter available in labels config for images views (and possibly group by)

image

bwateratmsft commented 5 months ago

Unfortunately it looks like this wouldn't be possible without doing docker inspect on every image, because docker image ls --format "{{ json . }}" doesn't include architecture information. docker inspect on every image would be prohibitively slow so I guess we can't really do this 😞

fredleger commented 5 months ago

ohhhh make totally sense. Wasn't aware of that thank you for clarification