mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
19 lines
381 B
Go
19 lines
381 B
Go
|
package client
|
||
|
|
||
|
import (
|
||
|
"net/url"
|
||
|
|
||
|
"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 force {
|
||
|
query.Set("force", "1")
|
||
|
}
|
||
|
resp, err := cli.delete(ctx, "/volumes/"+volumeID, query, nil)
|
||
|
ensureReaderClosed(resp)
|
||
|
return err
|
||
|
}
|