mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-10-30 10:46:54 +00:00
Generated largely from the specified config; small parts taken from `docker image inspect`, such as the command line. Renamed some of the yaml keys to match the OCI spec rather than Docker Compose as we decided they are more readable, no more underscores. Add some extra functionality - tmpfs specification - fully general mount specification - no new privileges can be specified now For nostalgic reasons, using engine-api to talk to the docker cli as we only need an old API version, and it is nice and easy to vendor... Signed-off-by: Justin Cormack <justin.cormack@docker.com>
27 lines
570 B
Go
27 lines
570 B
Go
package client
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"net/url"
|
|
|
|
"github.com/docker/engine-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
|
|
}
|