mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
7c36a1af03
This moves the engine-api client package to `/docker/docker/client`. Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
26 lines
570 B
Go
26 lines
570 B
Go
package client
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"net/url"
|
|
|
|
"github.com/docker/docker/api/types"
|
|
"golang.org/x/net/context"
|
|
)
|
|
|
|
// Info returns information about the docker server.
|
|
func (cli *Client) Info(ctx context.Context) (types.Info, error) {
|
|
var info types.Info
|
|
serverResp, err := cli.get(ctx, "/info", url.Values{}, nil)
|
|
if err != nil {
|
|
return info, err
|
|
}
|
|
defer ensureReaderClosed(serverResp)
|
|
|
|
if err := json.NewDecoder(serverResp.body).Decode(&info); err != nil {
|
|
return info, fmt.Errorf("Error reading remote info: %v", err)
|
|
}
|
|
|
|
return info, nil
|
|
}
|