2018-02-05 21:05:59 +00:00
|
|
|
package client // import "github.com/docker/docker/client"
|
2017-03-15 22:04:32 +00:00
|
|
|
|
2018-04-19 22:30:59 +00:00
|
|
|
import "context"
|
2017-03-15 22:04:32 +00:00
|
|
|
|
|
|
|
// ConfigRemove removes a Config.
|
|
|
|
func (cli *Client) ConfigRemove(ctx context.Context, id string) error {
|
2017-06-07 16:09:07 +00:00
|
|
|
if err := cli.NewVersionError("1.30", "config remove"); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2017-03-15 22:04:32 +00:00
|
|
|
resp, err := cli.delete(ctx, "/configs/"+id, nil, nil)
|
2019-02-11 12:26:12 +00:00
|
|
|
defer ensureReaderClosed(resp)
|
2017-09-08 16:04:34 +00:00
|
|
|
return wrapResponseError(err, resp, "config", id)
|
2017-03-15 22:04:32 +00:00
|
|
|
}
|