We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60c75fd commit a500c39Copy full SHA for a500c39
1 file changed
cli/command/image/build_session.go
@@ -28,6 +28,9 @@ import (
28
const clientSessionRemote = "client-session"
29
30
func isSessionSupported(dockerCli command.Cli) bool {
31
+ if versions.GreaterThanOrEqualTo(dockerCli.Client().ClientVersion(), "1.39") {
32
+ return true
33
+ }
34
return dockerCli.ServerInfo().HasExperimental && versions.GreaterThanOrEqualTo(dockerCli.Client().ClientVersion(), "1.31")
35
}
36
0 commit comments