github.com/ruphin/docker@v1.10.1/daemon/execdriver/windows/update.go (about) 1 // +build windows 2 3 package windows 4 5 import ( 6 "fmt" 7 8 "github.com/docker/docker/daemon/execdriver" 9 ) 10 11 // Update updates resource configs for a container. 12 func (d *Driver) Update(c *execdriver.Command) error { 13 return fmt.Errorf("Windows: Update not implemented") 14 }