You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
600 B
Go
22 lines
600 B
Go
package client // import "github.com/docker/docker/client"
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
|
|
"github.com/docker/docker/api/types"
|
|
volumetypes "github.com/docker/docker/api/types/volume"
|
|
)
|
|
|
|
// VolumeCreate creates a volume in the docker host.
|
|
func (cli *Client) VolumeCreate(ctx context.Context, options volumetypes.VolumeCreateBody) (types.Volume, error) {
|
|
var volume types.Volume
|
|
resp, err := cli.post(ctx, "/volumes/create", nil, options, nil)
|
|
defer ensureReaderClosed(resp)
|
|
if err != nil {
|
|
return volume, err
|
|
}
|
|
err = json.NewDecoder(resp.body).Decode(&volume)
|
|
return volume, err
|
|
}
|