mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-31 04:37:50 +00:00
Fixes: https://issues.redhat.com/browse/RUN-3578 Signed-off-by: Nicola Sella <nsella@redhat.com>
30 lines
817 B
Go
30 lines
817 B
Go
package client
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"net/url"
|
|
|
|
"github.com/moby/moby/api/types/container"
|
|
)
|
|
|
|
// ContainerDiff shows differences in a container filesystem since it was started.
|
|
func (cli *Client) ContainerDiff(ctx context.Context, containerID string, options ContainerDiffOptions) (ContainerDiffResult, error) {
|
|
containerID, err := trimID("container", containerID)
|
|
if err != nil {
|
|
return ContainerDiffResult{}, err
|
|
}
|
|
|
|
resp, err := cli.get(ctx, "/containers/"+containerID+"/changes", url.Values{}, nil)
|
|
defer ensureReaderClosed(resp)
|
|
if err != nil {
|
|
return ContainerDiffResult{}, err
|
|
}
|
|
|
|
var changes []container.FilesystemChange
|
|
err = json.NewDecoder(resp.Body).Decode(&changes)
|
|
if err != nil {
|
|
return ContainerDiffResult{}, err
|
|
}
|
|
return ContainerDiffResult{Changes: changes}, err
|
|
}
|