dotcloud/docker

View on GitHub
client/network_connect.go

Summary

Maintainability
A
0 mins
Test Coverage
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 {
    nc := network.ConnectOptions{
        Container:      containerID,
        EndpointConfig: config,
    }
    resp, err := cli.post(ctx, "/networks/"+networkID+"/connect", nil, nc, nil)
    ensureReaderClosed(resp)
    return err
}