Update github.com/fsouza/go-dockerclient to pick up IpcMode support.

This commit is contained in:
Mrunal Patel
2015-01-22 12:03:38 -08:00
parent 80ad188912
commit 683fd13ce6
20 changed files with 509 additions and 66 deletions

View File

@@ -27,9 +27,9 @@ func createTarStream(srcPath string) (io.ReadCloser, error) {
return nil, err
}
tarOpts := &archive.TarOptions{
Excludes: excludes,
Compression: archive.Uncompressed,
NoLchown: true,
ExcludePatterns: excludes,
Compression: archive.Uncompressed,
NoLchown: true,
}
return archive.TarWithOptions(srcPath, tarOpts)
}