1
0
mirror of https://github.com/docker/cli.git synced 2026-01-18 08:21:31 +03:00

Windows: Support credential specs

Signed-off-by: John Howard <jhoward@microsoft.com>
Upstream-commit: 6bc667128a
Component: cli
This commit is contained in:
John Howard
2016-06-07 12:15:50 -07:00
parent bf09a06c6f
commit ae30bfae31

View File

@@ -49,7 +49,8 @@ func (cli *Client) ImageBuild(ctx context.Context, buildContext io.Reader, optio
func imageBuildOptionsToQuery(options types.ImageBuildOptions) (url.Values, error) {
query := url.Values{
"t": options.Tags,
"t": options.Tags,
"securityopt": options.SecurityOpt,
}
if options.SuppressOutput {
query.Set("q", "1")