You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Error: ../../../go/pkg/mod/github.com/google/[email protected]/pkg/v1/daemon/options.go:40:9: cannot use client.NewClientWithOpts(client.FromEnv) (value of type *client.Client) as Client value in return statement: *client.Client does not implement Client (wrong type for method ImageHistory)
have ImageHistory(context.Context, string, ...client.ImageHistoryOption) ([]image.HistoryResponseItem, error)
want ImageHistory(context.Context, string) ([]image.HistoryResponseItem, error)
To fix this for now, you can pin this in your go.mod
github.com/docker/docker v27.5.1+incompatible
This won't work forever. Updating the interface to accept v28's signature will break folks that use it with < v28 :-/
The text was updated successfully, but these errors were encountered:
Using
v28.0.1
we can't buildpkg/v1/daemon
:To fix this for now, you can pin this in your
go.mod
This won't work forever. Updating the interface to accept v28's signature will break folks that use it with < v28 :-/
The text was updated successfully, but these errors were encountered: