update_windows.go 334 B

1234567891011
  1. package daemon // import "github.com/docker/docker/daemon"
  2. import (
  3. "github.com/docker/docker/api/types/container"
  4. libcontainerdtypes "github.com/docker/docker/libcontainerd/types"
  5. )
  6. func toContainerdResources(resources container.Resources) *libcontainerdtypes.Resources {
  7. // We don't support update, so do nothing
  8. return nil
  9. }