1
0
mirror of https://github.com/strongdm/comply synced 2026-04-02 23:49:58 +00:00
Files
comply/vendor/github.com/docker/docker/client/container_update.go
Justin McCarthy bd7899ee31 Initial commit
2018-05-09 18:02:33 -07:00

23 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
}