diff --git a/cmd/podman/containers/ps.go b/cmd/podman/containers/ps.go index bfb821159b..51e7bf5b5e 100644 --- a/cmd/podman/containers/ps.go +++ b/cmd/podman/containers/ps.go @@ -152,7 +152,7 @@ func jsonOut(responses []entities.ListContainer) error { con.Status = psReporter{con}.Status() jf := jsonFormat{ ListContainer: con, - Created: con.Created.UnixNano(), + Created: con.Created.Unix(), } r = append(r, jf) }