mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
![Qiang Huang](/assets/img/avatar_default.png)
It's used for updating properties of one or more containers, we only support resource configs for now. It can be extended in the future. Signed-off-by: Qiang Huang <h.huangqiang@huawei.com>
14 lines
265 B
Go
14 lines
265 B
Go
// +build windows
|
|
|
|
package windows
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/docker/docker/daemon/execdriver"
|
|
)
|
|
|
|
// Update updates resource configs for a container.
|
|
func (d *Driver) Update(c *execdriver.Command) error {
|
|
return fmt.Errorf("Windows: Update not implemented")
|
|
}
|