mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
52237787fa
Signed-off-by: John Howard <jhoward@microsoft.com>
47 lines
1.8 KiB
Go
47 lines
1.8 KiB
Go
package libcontainerd
|
|
|
|
import (
|
|
containerd "github.com/docker/containerd/api/grpc/types"
|
|
"github.com/opencontainers/specs/specs-go"
|
|
)
|
|
|
|
// Spec is the base configuration for the container. It specifies platform
|
|
// independent configuration. This information must be included when the
|
|
// bundle is packaged for distribution.
|
|
type Spec specs.Spec
|
|
|
|
// 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"`
|
|
// User specifies user information for the process.
|
|
User *User `json:"user"`
|
|
// Args specifies the binary and arguments for the application to execute.
|
|
Args []string `json:"args"`
|
|
// Env populates the process environment for the process.
|
|
Env []string `json:"env,omitempty"`
|
|
// Cwd is the current working directory for the process and must be
|
|
// relative to the container's root.
|
|
Cwd *string `json:"cwd"`
|
|
// Capabilities are linux capabilities that are kept for the container.
|
|
Capabilities []string `json:"capabilities,omitempty"`
|
|
// Rlimits specifies rlimit options to apply to the process.
|
|
Rlimits []specs.Rlimit `json:"rlimits,omitempty"`
|
|
// ApparmorProfile specified the apparmor profile for the container.
|
|
ApparmorProfile *string `json:"apparmorProfile,omitempty"`
|
|
// SelinuxProcessLabel specifies the selinux context that the container process is run as.
|
|
SelinuxLabel *string `json:"selinuxLabel,omitempty"`
|
|
}
|
|
|
|
// Stats contains a stats properties from containerd.
|
|
type Stats containerd.StatsResponse
|
|
|
|
// Summary container a container summary from containerd
|
|
type Summary struct{}
|
|
|
|
// User specifies linux specific user and group information for the container's
|
|
// main process.
|
|
type User specs.User
|
|
|
|
// Resources defines updatable container resource values.
|
|
type Resources containerd.UpdateResource
|