mirror of
				https://github.com/optim-enterprises-bv/kubernetes.git
				synced 2025-11-04 04:08:16 +00:00 
			
		
		
		
	godep restore pushd $GOPATH/src/github.com/appc/spec git co master popd go get go4.org/errorutil rm -rf Godeps godep save ./... git add vendor git add -f $(git ls-files --other vendor/) git co -- Godeps/LICENSES Godeps/.license_file_state Godeps/OWNERS
		
			
				
	
	
		
			24 lines
		
	
	
		
			599 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			599 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package client
 | 
						|
 | 
						|
import (
 | 
						|
	"encoding/json"
 | 
						|
	"net/url"
 | 
						|
 | 
						|
	"github.com/docker/engine-api/types"
 | 
						|
	"golang.org/x/net/context"
 | 
						|
)
 | 
						|
 | 
						|
// ContainerDiff shows differences in a container filesystem since it was started.
 | 
						|
func (cli *Client) ContainerDiff(ctx context.Context, containerID string) ([]types.ContainerChange, error) {
 | 
						|
	var changes []types.ContainerChange
 | 
						|
 | 
						|
	serverResp, err := cli.get(ctx, "/containers/"+containerID+"/changes", url.Values{}, nil)
 | 
						|
	if err != nil {
 | 
						|
		return changes, err
 | 
						|
	}
 | 
						|
 | 
						|
	err = json.NewDecoder(serverResp.body).Decode(&changes)
 | 
						|
	ensureReaderClosed(serverResp)
 | 
						|
	return changes, err
 | 
						|
}
 |