mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
22 lines
490 B
Go
22 lines
490 B
Go
|
package client
|
||
|
|
||
|
import (
|
||
|
"encoding/json"
|
||
|
|
||
|
"github.com/docker/docker/api/types"
|
||
|
"golang.org/x/net/context"
|
||
|
)
|
||
|
|
||
|
// ServerVersion returns information of the docker client and server host.
|
||
|
func (cli *Client) ServerVersion(ctx context.Context) (types.Version, error) {
|
||
|
resp, err := cli.get(ctx, "/version", nil, nil)
|
||
|
if err != nil {
|
||
|
return types.Version{}, err
|
||
|
}
|
||
|
|
||
|
var server types.Version
|
||
|
err = json.NewDecoder(resp.body).Decode(&server)
|
||
|
ensureReaderClosed(resp)
|
||
|
return server, err
|
||
|
}
|