github.com/akerouanton/docker@v1.11.0-rc3/libcontainerd/types_windows.go (about)

     1  package libcontainerd
     2  
     3  import "github.com/docker/docker/libcontainerd/windowsoci"
     4  
     5  // Spec is the base configuration for the container.
     6  type Spec windowsoci.WindowsSpec
     7  
     8  // Process contains information to start a specific application inside the container.
     9  type Process windowsoci.Process
    10  
    11  // User specifies user information for the containers main process.
    12  type User windowsoci.User
    13  
    14  // Summary container a container summary from containerd
    15  type Summary struct {
    16  	Pid     uint32
    17  	Command string
    18  }
    19  
    20  // Stats contains a stats properties from containerd.
    21  type Stats struct{}
    22  
    23  // Resources defines updatable container resource values.
    24  type Resources struct{}