2018-02-05 16:05:59 -05:00
|
|
|
package client // import "github.com/docker/docker/client"
|
2016-09-06 14:46:37 -04:00
|
|
|
|
|
|
|
import (
|
2018-04-19 18:30:59 -04:00
|
|
|
"context"
|
2016-09-06 14:46:37 -04:00
|
|
|
"net/url"
|
|
|
|
|
2016-11-02 20:43:32 -04:00
|
|
|
"github.com/docker/docker/api/types/versions"
|
2016-09-06 14:46:37 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
// VolumeRemove removes a volume from the docker host.
|
|
|
|
func (cli *Client) VolumeRemove(ctx context.Context, volumeID string, force bool) error {
|
|
|
|
query := url.Values{}
|
2016-11-02 20:43:32 -04:00
|
|
|
if versions.GreaterThanOrEqualTo(cli.version, "1.25") {
|
|
|
|
if force {
|
|
|
|
query.Set("force", "1")
|
|
|
|
}
|
2016-09-06 14:46:37 -04:00
|
|
|
}
|
|
|
|
resp, err := cli.delete(ctx, "/volumes/"+volumeID, query, nil)
|
|
|
|
ensureReaderClosed(resp)
|
2017-09-08 12:04:34 -04:00
|
|
|
return wrapResponseError(err, resp, "volume", volumeID)
|
2016-09-06 14:46:37 -04:00
|
|
|
}
|