mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
26 lines
691 B
Go
26 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
|
||
|
}
|