docker buildx dial-stdio
| 内容説明 | Proxy current stdio streams to builder instance |
|---|---|
| 利用方法 | docker buildx dial-stdio |
内容説明
dial-stdio uses the stdin and stdout streams of the command to proxy to the configured builder instance. It is not intended to be used by humans, but rather by other tools that want to interact with the builder instance via BuildKit API.
オプション
| オプション | デフォルト | 内容説明 |
|---|---|---|
--platform | Target platform: this is used for node selection | |
--progress | none | Set type of progress output (auto, plain, rawjson, tty). Use plain to show container output |
利用例
Example go program that uses the dial-stdio command wire up a buildkit client. This is, for example, use only and may not be suitable for production use.
client.New(ctx, "", client.WithContextDialer(func(context.Context, string) (net.Conn, error) {
c1, c2 := net.Pipe()
cmd := exec.Command("docker", "buildx", "dial-stdio")
cmd.Stdin = c1
cmd.Stdout = c1
if err := cmd.Start(); err != nil {
c1.Close()
c2.Close()
return nil, err
}
go func() {
cmd.Wait()
c2.Close()
}()
return c2
}))