mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-23 10:21:00 +00:00
75513575be
* store dependency's in git * since we vendor ... rm tech-depts * aad make target 'vendor' to update vendor folder (manual task)
18 lines
578 B
Go
18 lines
578 B
Go
package docker // import "docker.io/go-docker"
|
|
|
|
import (
|
|
"docker.io/go-docker/api/types"
|
|
"docker.io/go-docker/api/types/network"
|
|
"golang.org/x/net/context"
|
|
)
|
|
|
|
// 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 {
|
|
nc := types.NetworkConnect{
|
|
Container: containerID,
|
|
EndpointConfig: config,
|
|
}
|
|
resp, err := cli.post(ctx, "/networks/"+networkID+"/connect", nil, nc, nil)
|
|
ensureReaderClosed(resp)
|
|
return err
|
|
}
|