Skip to content

Commit 9763327

Browse files
FedeDPpoiana
authored andcommitted
chore(pkg): bumped docker dep to v26.0.0.
Signed-off-by: Federico Di Pierro <nierro92@gmail.com>
1 parent c12a122 commit 9763327

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

go.mod

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ require (
77
github.com/blang/semver v3.5.1+incompatible
88
github.com/containerd/containerd v1.7.13 // indirect
99
github.com/creasty/defaults v1.7.0
10-
github.com/docker/docker v25.0.5+incompatible
10+
github.com/docker/docker v26.0.0+incompatible
1111
github.com/go-playground/locales v0.14.1
1212
github.com/go-playground/universal-translator v0.18.1
1313
github.com/go-playground/validator/v10 v10.18.0
@@ -85,6 +85,7 @@ require (
8585
github.com/mattn/go-runewidth v0.0.15 // indirect
8686
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
8787
github.com/mitchellh/mapstructure v1.5.0 // indirect
88+
github.com/moby/docker-image-spec v1.3.1 // indirect
8889
github.com/moby/patternmatcher v0.6.0 // indirect
8990
github.com/moby/spdystream v0.2.0 // indirect
9091
github.com/moby/sys/sequential v0.5.0 // indirect

go.sum

+4-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1
3434
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
3535
github.com/distribution/reference v0.5.0 h1:/FUIFXtfc/x2gpa5/VGfiGLuOIdYa1t65IKK2OFGvA0=
3636
github.com/distribution/reference v0.5.0/go.mod h1:BbU0aIcezP1/5jX/8MP0YiH4SdvB5Y4f/wlDRiLyi3E=
37-
github.com/docker/docker v25.0.5+incompatible h1:UmQydMduGkrD5nQde1mecF/YnSbTOaPeFIeP5C4W+DE=
38-
github.com/docker/docker v25.0.5+incompatible/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk=
37+
github.com/docker/docker v26.0.0+incompatible h1:Ng2qi+gdKADUa/VM+6b6YaY2nlZhk/lVJiKR/2bMudU=
38+
github.com/docker/docker v26.0.0+incompatible/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk=
3939
github.com/docker/go-connections v0.5.0 h1:USnMq7hx7gwdVZq1L49hLXaFtUdTADjXGp+uj1Br63c=
4040
github.com/docker/go-connections v0.5.0/go.mod h1:ov60Kzw0kKElRwhNs9UlUHAE/F9Fe6GLaXnqyDdmEXc=
4141
github.com/docker/go-units v0.5.0 h1:69rxXcBk27SvSaaxTtLh/8llcHD8vYHT7WSdRZ/jvr4=
@@ -159,6 +159,8 @@ github.com/mitchellh/go-wordwrap v1.0.1 h1:TLuKupo69TCn6TQSyGxwI1EblZZEsQ0vMlAFQ
159159
github.com/mitchellh/go-wordwrap v1.0.1/go.mod h1:R62XHJLzvMFRBbcrT7m7WgmE1eOyTSsCt+hzestvNj0=
160160
github.com/mitchellh/mapstructure v1.5.0 h1:jeMsZIYE/09sWLaz43PL7Gy6RuMjD2eJVyuac5Z2hdY=
161161
github.com/mitchellh/mapstructure v1.5.0/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo=
162+
github.com/moby/docker-image-spec v1.3.1 h1:jMKff3w6PgbfSa69GfNg+zN/XLhfXJGnEx3Nl2EsFP0=
163+
github.com/moby/docker-image-spec v1.3.1/go.mod h1:eKmb5VW8vQEh/BAr2yvVNvuiJuY6UIocYsFu/DxxRpo=
162164
github.com/moby/patternmatcher v0.6.0 h1:GmP9lR19aU5GqSSFko+5pRqHi+Ohk1O69aFiKkVGiPk=
163165
github.com/moby/patternmatcher v0.6.0/go.mod h1:hDPoyOpDY7OrrMDLaYoY3hf52gNCR/YOUYxkhApJIxc=
164166
github.com/moby/spdystream v0.2.0 h1:cjW1zVyyoiM0T7b6UoySUFqzXMoqRckQtXwGPiBhOM8=

pkg/driverbuilder/docker.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ func mustCheckArchUseQemu(ctx context.Context, b *builder.Build, cli *client.Cli
102102
os.Exit(1)
103103
}
104104

105-
if err = cli.ContainerStart(ctx, qemuImage.ID, types.ContainerStartOptions{}); err != nil {
105+
if err = cli.ContainerStart(ctx, qemuImage.ID, container.StartOptions{}); err != nil {
106106
panic(err)
107107
}
108108

0 commit comments

Comments
 (0)