enable buildkit as builder from daemon; no env var needs to be set

Signed-off-by: Anda Xu <anda.xu@docker.com>
This commit is contained in:
Anda Xu
2018-08-06 14:16:11 -07:00
parent 466e1b0741
commit ef09ca8987
2 changed files with 4 additions and 9 deletions

View File

@ -208,6 +208,7 @@ func (cli *DockerCli) initializeFromClient() {
cli.serverInfo = ServerInfo{
HasExperimental: ping.Experimental,
OSType: ping.OSType,
BuildkitEnabled: ping.Buildkit,
}
cli.client.NegotiateAPIVersionPing(ping)
}
@ -241,6 +242,7 @@ func (cli *DockerCli) NewContainerizedEngineClient(sockPath string) (containeriz
type ServerInfo struct {
HasExperimental bool
OSType string
BuildkitEnabled bool
}
// ClientInfo stores details about the supported features of the client