mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
64e96932bd
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
20 lines
532 B
Go
20 lines
532 B
Go
package client // import "github.com/docker/docker/client"
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
|
|
"github.com/docker/docker/api/types/volume"
|
|
)
|
|
|
|
// VolumeCreate creates a volume in the docker host.
|
|
func (cli *Client) VolumeCreate(ctx context.Context, options volume.CreateOptions) (volume.Volume, error) {
|
|
var vol volume.Volume
|
|
resp, err := cli.post(ctx, "/volumes/create", nil, options, nil)
|
|
defer ensureReaderClosed(resp)
|
|
if err != nil {
|
|
return vol, err
|
|
}
|
|
err = json.NewDecoder(resp.body).Decode(&vol)
|
|
return vol, err
|
|
}
|