RamiKrispin / vscode-python

A Tutorial for Setting Python Development Environment with VScode and Docker
837 stars 81 forks source link

Inspecting docker container image layers #7

Open gkumarg opened 8 months ago

gkumarg commented 8 months ago

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 7 months ago

@gkumarg, thanks! Planning at some point to test this tutorial on a Windows machine, keeping this issue open till then.