github.com/jiasir/docker@v1.3.3-0.20170609024000-252e610103e7/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  }