github.com/hustcat/docker@v1.3.3-0.20160314103604-901c67a8eeab/daemon/execdriver/windows/update.go (about)

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