github.com/sijibomii/docker@v0.0.0-20231230191044-5cf6ca554647/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 // StateInfo contains description about the new state container has entered. 21 type StateInfo struct { 22 CommonStateInfo 23 24 // Platform specific StateInfo 25 UpdatePending bool 26 } 27 28 // Stats contains a stats properties from containerd. 29 type Stats struct{} 30 31 // Resources defines updatable container resource values. 32 type Resources struct{}