mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
81bb9978ab
And fix remove calls to return a notFound error Signed-off-by: Daniel Nephin <dnephin@docker.com>
21 lines
536 B
Go
21 lines
536 B
Go
package client
|
|
|
|
import (
|
|
"net/url"
|
|
|
|
"github.com/docker/docker/api/types/versions"
|
|
"golang.org/x/net/context"
|
|
)
|
|
|
|
// VolumeRemove removes a volume from the docker host.
|
|
func (cli *Client) VolumeRemove(ctx context.Context, volumeID string, force bool) error {
|
|
query := url.Values{}
|
|
if versions.GreaterThanOrEqualTo(cli.version, "1.25") {
|
|
if force {
|
|
query.Set("force", "1")
|
|
}
|
|
}
|
|
resp, err := cli.delete(ctx, "/volumes/"+volumeID, query, nil)
|
|
ensureReaderClosed(resp)
|
|
return wrapResponseError(err, resp, "volume", volumeID)
|
|
}
|