1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00
moby--moby/libcontainerd/types_solaris.go
John Howard 02309170a5 Remove hacked Windows OCI spec, compile fixups
Signed-off-by: John Howard <jhoward@microsoft.com>
2016-09-27 12:07:35 -07:00

25 lines
726 B
Go

package libcontainerd
// Process contains information to start a specific application inside the container.
type Process struct {
// Terminal creates an interactive terminal for the container.
Terminal bool `json:"terminal"`
// Args specifies the binary and arguments for the application to execute.
Args []string `json:"args"`
}
// Stats contains a stats properties from containerd.
type Stats struct{}
// Summary contains a container summary from containerd
type Summary struct{}
// StateInfo contains description about the new state container has entered.
type StateInfo struct {
CommonStateInfo
// Platform specific StateInfo
}
// Resources defines updatable container resource values.
type Resources struct{}