2018-02-05 16:05:59 -05:00
|
|
|
package client // import "github.com/docker/docker/client"
|
2016-09-06 14:46:37 -04:00
|
|
|
|
|
|
|
import (
|
2018-04-19 18:30:59 -04:00
|
|
|
"context"
|
2016-09-06 14:46:37 -04:00
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
|
|
|
"net/url"
|
|
|
|
|
|
|
|
"github.com/docker/docker/api/types"
|
|
|
|
)
|
|
|
|
|
|
|
|
// 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)
|
2019-02-11 07:26:12 -05:00
|
|
|
defer ensureReaderClosed(serverResp)
|
2016-09-06 14:46:37 -04:00
|
|
|
if err != nil {
|
|
|
|
return info, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := json.NewDecoder(serverResp.body).Decode(&info); err != nil {
|
|
|
|
return info, fmt.Errorf("Error reading remote info: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return info, nil
|
|
|
|
}
|