mirror of
https://github.com/containers/podman.git
synced 2025-11-01 10:45:52 +08:00
Merge pull request #7980 from 3sky/compatibility-api-timestamp
Resolve #7860 - add time.RFC3339 format
This commit is contained in:
@ -7,6 +7,7 @@ import (
|
||||
"strconv"
|
||||
"strings"
|
||||
"syscall"
|
||||
"time"
|
||||
|
||||
"github.com/containers/podman/v2/libpod"
|
||||
"github.com/containers/podman/v2/libpod/define"
|
||||
@ -316,7 +317,7 @@ func LibpodToContainerJSON(l *libpod.Container, sz bool) (*types.ContainerJSON,
|
||||
|
||||
cb := types.ContainerJSONBase{
|
||||
ID: l.ID(),
|
||||
Created: l.CreatedTime().String(),
|
||||
Created: l.CreatedTime().Format(time.RFC3339Nano),
|
||||
Path: "",
|
||||
Args: nil,
|
||||
State: &state,
|
||||
|
||||
Reference in New Issue
Block a user