mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
f196cf6a09
Signed-off-by: Daniel Nephin <dnephin@docker.com>
22 lines
631 B
Go
22 lines
631 B
Go
package client
|
|
|
|
import (
|
|
"encoding/json"
|
|
|
|
"github.com/docker/docker/api/types/container"
|
|
"golang.org/x/net/context"
|
|
)
|
|
|
|
// ContainerUpdate updates resources of a container
|
|
func (cli *Client) ContainerUpdate(ctx context.Context, containerID string, updateConfig container.UpdateConfig) (container.ContainerUpdateOKBody, error) {
|
|
var response container.ContainerUpdateOKBody
|
|
serverResp, err := cli.post(ctx, "/containers/"+containerID+"/update", nil, updateConfig, nil)
|
|
if err != nil {
|
|
return response, err
|
|
}
|
|
|
|
err = json.NewDecoder(serverResp.body).Decode(&response)
|
|
|
|
ensureReaderClosed(serverResp)
|
|
return response, err
|
|
}
|