2018-02-05 21:05:59 +00:00
|
|
|
package client // import "github.com/docker/docker/client"
|
2016-09-06 18:46:37 +00:00
|
|
|
|
|
|
|
import (
|
2018-04-19 22:30:59 +00:00
|
|
|
"context"
|
2016-09-06 18:46:37 +00:00
|
|
|
"encoding/json"
|
|
|
|
"net/url"
|
|
|
|
|
2016-11-09 21:32:53 +00:00
|
|
|
"github.com/docker/docker/api/types/image"
|
2016-09-06 18:46:37 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// ImageHistory returns the changes in an image in history format.
|
2016-11-09 21:32:53 +00:00
|
|
|
func (cli *Client) ImageHistory(ctx context.Context, imageID string) ([]image.HistoryResponseItem, error) {
|
|
|
|
var history []image.HistoryResponseItem
|
2016-09-06 18:46:37 +00:00
|
|
|
serverResp, err := cli.get(ctx, "/images/"+imageID+"/history", url.Values{}, nil)
|
2019-02-11 12:26:12 +00:00
|
|
|
defer ensureReaderClosed(serverResp)
|
2016-09-06 18:46:37 +00:00
|
|
|
if err != nil {
|
|
|
|
return history, err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = json.NewDecoder(serverResp.body).Decode(&history)
|
|
|
|
return history, err
|
|
|
|
}
|