mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
7c36a1af03
This moves the engine-api client package to `/docker/docker/client`. Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
25 lines
691 B
Go
25 lines
691 B
Go
package client
|
|
|
|
import (
|
|
"encoding/json"
|
|
|
|
"github.com/docker/docker/api/types"
|
|
"golang.org/x/net/context"
|
|
)
|
|
|
|
// NetworkCreate creates a new network in the docker host.
|
|
func (cli *Client) NetworkCreate(ctx context.Context, name string, options types.NetworkCreate) (types.NetworkCreateResponse, error) {
|
|
networkCreateRequest := types.NetworkCreateRequest{
|
|
NetworkCreate: options,
|
|
Name: name,
|
|
}
|
|
var response types.NetworkCreateResponse
|
|
serverResp, err := cli.post(ctx, "/networks/create", nil, networkCreateRequest, nil)
|
|
if err != nil {
|
|
return response, err
|
|
}
|
|
|
|
json.NewDecoder(serverResp.body).Decode(&response)
|
|
ensureReaderClosed(serverResp)
|
|
return response, err
|
|
}
|