@jake-bolton.bsky.social

Here's a secret #powershell tip that converts #docker #cli to objects Use "--format json" Try these > docker container ls --format 'json' | ConvertFrom-Json > ( $imgs = docker image ls --format 'json' | ConvertFrom-Json ) | Ft > docker image inspect $imgs[3].ID --format 'json' | jq -C

BildBild