mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-25 09:50:31 +00:00
22 lines
590 B
Go
22 lines
590 B
Go
|
package docker // import "docker.io/go-docker"
|
||
|
|
||
|
import (
|
||
|
"encoding/json"
|
||
|
|
||
|
"docker.io/go-docker/api/types"
|
||
|
volumetypes "docker.io/go-docker/api/types/volume"
|
||
|
"golang.org/x/net/context"
|
||
|
)
|
||
|
|
||
|
// VolumeCreate creates a volume in the docker host.
|
||
|
func (cli *Client) VolumeCreate(ctx context.Context, options volumetypes.VolumesCreateBody) (types.Volume, error) {
|
||
|
var volume types.Volume
|
||
|
resp, err := cli.post(ctx, "/volumes/create", nil, options, nil)
|
||
|
if err != nil {
|
||
|
return volume, err
|
||
|
}
|
||
|
err = json.NewDecoder(resp.body).Decode(&volume)
|
||
|
ensureReaderClosed(resp)
|
||
|
return volume, err
|
||
|
}
|