mirror of
				https://github.com/moby/moby.git
				synced 2022-11-09 12:21:53 -05:00 
			
		
		
		
	Signed-off-by: Victor Vieux <vieux@docker.com> update cobra and use Tags Signed-off-by: Victor Vieux <vieux@docker.com> allow client to talk to an older server Signed-off-by: Victor Vieux <vieux@docker.com>
		
			
				
	
	
		
			21 lines
		
	
	
	
		
			491 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			491 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 err
 | 
						|
}
 |