Skip to content

Commit e4aa6cd

Browse files
Merge pull request #1012 from vdice/feat/add-docker-driver-test
feat(driver_test.go): add test around docker driver config
2 parents 1f69ccf + 429e5e3 commit e4aa6cd

File tree

3 files changed

+135
-54
lines changed

3 files changed

+135
-54
lines changed

go.mod

+6-5
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,12 @@ require (
1717
github.com/containerd/ttrpc v1.0.0 // indirect
1818
github.com/containerd/typeurl v1.0.0 // indirect
1919
github.com/docker/cli v0.0.0-20191017083524-a8ff7f821017
20-
github.com/docker/cnab-to-oci v0.3.0-beta4 // indirect
2120
github.com/docker/distribution v2.7.1+incompatible
2221
github.com/docker/docker v1.4.2-0.20181229214054-f76d6a078d88
2322
github.com/docker/go-metrics v0.0.1 // indirect
2423
github.com/dustin/go-humanize v1.0.0
2524
github.com/ghodss/yaml v1.0.0
26-
github.com/gobuffalo/packr/v2 v2.7.1
25+
github.com/gobuffalo/packr/v2 v2.8.0
2726
github.com/gogo/googleapis v1.3.2 // indirect
2827
github.com/google/go-containerregistry v0.0.0-20191015185424-71da34e4d9b3
2928
github.com/gorilla/mux v1.7.4 // indirect
@@ -39,10 +38,10 @@ require (
3938
github.com/pivotal/image-relocation v0.0.0-20191111101224-e94aff6df06c
4039
github.com/pkg/errors v0.8.1
4140
github.com/spf13/afero v1.2.2
42-
github.com/spf13/cobra v0.0.5
41+
github.com/spf13/cobra v0.0.6
4342
github.com/spf13/pflag v1.0.5
44-
github.com/spf13/viper v1.3.2
45-
github.com/stretchr/testify v1.4.0
43+
github.com/spf13/viper v1.4.0
44+
github.com/stretchr/testify v1.5.1
4645
github.com/xeipuuv/gojsonschema v1.2.0
4746
golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e
4847
gopkg.in/AlecAivazis/survey.v1 v1.8.7
@@ -58,3 +57,5 @@ replace github.com/hashicorp/go-plugin => github.com/carolynvs/go-plugin v1.0.1-
5857
// See https://github.com/containerd/containerd/issues/3031
5958
// When I try to just use the require, go is shortening it to v2.7.1+incompatible which then fails to build...
6059
replace github.com/docker/distribution => github.com/docker/distribution v2.7.1-0.20190205005809-0d3efadf0154+incompatible
60+
61+
replace github.com/cnabio/cnab-go => github.com/vdice/cnab-go v0.0.0-20200424180850-5395191c27b9

0 commit comments

Comments
 (0)