本文整理匯總了Golang中github.com/docker/engine-api/client.Client.NetworkInspect方法的典型用法代碼示例。如果您正苦於以下問題:Golang Client.NetworkInspect方法的具體用法?Golang Client.NetworkInspect怎麽用?Golang Client.NetworkInspect使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/docker/engine-api/client.Client
的用法示例。
在下文中一共展示了Client.NetworkInspect方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: getIntNames
func getIntNames(netID string, docker *dockerclient.Client) (*intNames, error) {
net, err := docker.NetworkInspect(context.Background(), netID)
if err != nil {
log.Errorf("Error getting networks: %v", err)
return nil, err
}
names := &intNames{}
if net.Driver != "vxlan" {
log.Errorf("Network %v is not a vxlan network", netID)
return nil, errors.New("Not a vxlan network")
}
names.VxlanName = "vx_" + netID[:12]
// get interface names from options first
for k, v := range net.Options {
if k == "vxlanName" {
names.VxlanName = v
}
}
return names, nil
}
示例2: getGateway
func getGateway(netID string, docker dockerclient.Client) (string, error) {
net, err := docker.NetworkInspect(context.Background(), netID)
if err != nil {
log.Errorf("Error inspecting network: %v", err)
return "", err
}
for _, config := range net.IPAM.Config {
if config.Gateway != "" {
return config.Gateway, nil
}
}
return "", nil
}
示例3: PurgeOnionNetwork
// PurgeOnionNetwork purges an onion network, disconnecting all containers with
// it. We assume that nobody is adding containers to this network.
func PurgeOnionNetwork(cli *client.Client, network string) error {
inspect, err := cli.NetworkInspect(network)
if err != nil {
return err
}
for container, _ := range inspect.Containers {
log.Infof("purge network %s: disconnecting container %s", network, container)
if err := cli.NetworkDisconnect(network, container, true); err != nil {
return err
}
}
return cli.NetworkRemove(network)
}