types_windows.go 655 B

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