dd9309c15e
Initial vendor list validated with empty $GOPATH and only master checked out; followed by `make` and verified that all binaries build properly. Updates require github.com/LK4D4/vndr tool. Signed-off-by: Phil Estes <estesp@linux.vnet.ibm.com>
14 lines
434 B
Go
14 lines
434 B
Go
package runc
|
|
|
|
import "time"
|
|
|
|
// Container hold information for a runc container
|
|
type Container struct {
|
|
ID string `json:"id"`
|
|
Pid int `json:"pid"`
|
|
Status string `json:"status"`
|
|
Bundle string `json:"bundle"`
|
|
Rootfs string `json:"rootfs"`
|
|
Created time.Time `json:"created"`
|
|
Annotations map[string]string `json:"annotations"`
|
|
}
|