Inspecting docker container image layers
gkumarg opened this issue · 1 comments
gkumarg commented
For those that may be struggling to get the following code to work in windows:
docker inspect rkrispin/vscode-python:ex1 | jq '.[] | .RootFS'
Change it to:
docker inspect rkrispin/vscode-python:ex1 | jq ".[] | .RootFS"
This is assuming you already got jq installed with:
winget install jqlang.jq
RamiKrispin commented
@gkumarg, thanks! Planning at some point to test this tutorial on a Windows machine, keeping this issue open till then.