mirror of
https://github.com/containerd/containerd.git
synced 2026-08-12 12:14:44 +00:00
19 lines
246 B
Go
19 lines
246 B
Go
package containerd
|
|
|
|
type Process struct {
|
|
Args []string
|
|
Env []string
|
|
Cwd string
|
|
Uid int
|
|
Gid int
|
|
TTY bool
|
|
}
|
|
|
|
type Config struct {
|
|
Process Process
|
|
Hostname string
|
|
Domain string
|
|
Labels map[string]string
|
|
StopSignal int
|
|
}
|