12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- 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"`
- }
- // StateInfo contains description about the new state container has entered.
- type StateInfo struct {
- CommonStateInfo
- // Platform specific StateInfo
- OOMKilled bool
- }
- // 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
|