Merge pull request #818 from baude/ps_command
cmd/kpod/ps.go: Use getCommand for JSON
This commit is contained in:
commit
173d56cc67
1 changed files with 1 additions and 1 deletions
|
@ -298,7 +298,7 @@ func getJSONOutput(containers []*libkpod.ContainerData) (psOutput []psJSONParams
|
|||
ID: ctr.ID,
|
||||
Image: ctr.FromImage,
|
||||
ImageID: ctr.FromImageID,
|
||||
Command: ctr.ImageCreatedBy,
|
||||
Command: getCommand(ctr.ImageCreatedBy),
|
||||
CreatedAt: ctr.State.Created,
|
||||
RunningFor: time.Since(ctr.State.Created),
|
||||
Status: ctr.State.Status,
|
||||
|
|
Loading…
Add table
Reference in a new issue