You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(cli): container inspect returns a JSON array with a Docker-shaped State object
`a3s-box inspect <container>` printed a bare flattened object with a flat
`status` string, so `inspect X | jq '.[0].State.Running'` yielded null. It now
emits a top-level JSON array (like docker inspect) and adds a nested
State {Status, Running, Paused, ExitCode} (a paused container is Running=true,
Paused=true, matching Docker), while keeping the existing a3s-native fields.
0 commit comments