2016-03-18 18:50:19 +00:00
|
|
|
package libcontainerd
|
|
|
|
|
|
|
|
const (
|
|
|
|
// InitFriendlyName is the name given in the lookup map of processes
|
|
|
|
// for the first process started in a container.
|
|
|
|
InitFriendlyName = "init"
|
|
|
|
configFilename = "config.json"
|
|
|
|
)
|
|
|
|
|
|
|
|
type containerCommon struct {
|
|
|
|
process
|
2016-10-05 20:29:56 +00:00
|
|
|
processes map[string]*process
|
2016-03-18 18:50:19 +00:00
|
|
|
}
|