github.com/olljanat/moby@v1.13.1/libcontainerd/container.go (about)

     1  package libcontainerd
     2  
     3  const (
     4  	// InitFriendlyName is the name given in the lookup map of processes
     5  	// for the first process started in a container.
     6  	InitFriendlyName = "init"
     7  	configFilename   = "config.json"
     8  )
     9  
    10  type containerCommon struct {
    11  	process
    12  	processes map[string]*process
    13  }