forked from toolshed/abra
We were running behind and there were quite some deprecations to update. This was mostly in the upstream copy/pasta package but seems quite minimal.
29 lines
717 B
Go
29 lines
717 B
Go
package client // import "github.com/docker/docker/client"
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/docker/docker/api/types/network"
|
|
)
|
|
|
|
// NetworkConnect connects a container to an existent network in the docker host.
|
|
func (cli *Client) NetworkConnect(ctx context.Context, networkID, containerID string, config *network.EndpointSettings) error {
|
|
networkID, err := trimID("network", networkID)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
containerID, err = trimID("container", containerID)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
nc := network.ConnectOptions{
|
|
Container: containerID,
|
|
EndpointConfig: config,
|
|
}
|
|
resp, err := cli.post(ctx, "/networks/"+networkID+"/connect", nil, nc, nil)
|
|
ensureReaderClosed(resp)
|
|
return err
|
|
}
|