container.go 287 B

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