update.go 325 B

1234567891011121314
  1. // +build windows
  2. package windows
  3. import (
  4. "github.com/docker/docker/daemon/execdriver"
  5. )
  6. // Update updates resource configs for a container.
  7. func (d *Driver) Update(c *execdriver.Command) error {
  8. // Updating resource isn't supported on Windows
  9. // but we should return nil for enabling updating container
  10. return nil
  11. }