blob: e2d344ea0d4eda18acd1c3d7e7e6e82dd3545a5d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
package images
import (
"context"
"net/http"
"github.com/containers/libpod/pkg/bindings"
"github.com/containers/storage/pkg/archive"
)
// Diff provides the changes between two container layers
func Diff(ctx context.Context, nameOrId string) ([]archive.Change, error) {
conn, err := bindings.GetClient(ctx)
if err != nil {
return nil, err
}
response, err := conn.DoRequest(nil, http.MethodGet, "/images/%s/changes", nil, nil, nameOrId)
if err != nil {
return nil, err
}
var changes []archive.Change
return changes, response.Process(&changes)
}
|