mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
02309170a5
Signed-off-by: John Howard <jhoward@microsoft.com>
25 lines
726 B
Go
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{}
|