CrazyMax
CrazyMax
Currently we can't set the restart policy for buildkit containers created with `docker-container` driver. In my use case I have restarted some machines but as the default restart policy is...
reduce footprint in our gitignore by using a single output dir for build, cross and coverage. also remove unused `cross-out`. structure will look like this: * `./bin/build` * `./bin/coverage` *...
Carry changes from #1025 related to an issue with hcl attributes not set if diagnosed as duplicated: https://github.com/docker/buildx/pull/1025#discussion_r843336438. Needs to fork the [merge logic from hcl repo](https://github.com/hashicorp/hcl/blob/main/merged.go). It might be...
Display current builder being used when building to the progress output: ```console $ docker buildx build . #1 [internal] building with "builder" instance using docker-container driver #1 DONE 0.0s #2...
follow-up https://github.com/docker/buildx/issues/1249#issuecomment-1205162020 Use `docker.EndpointFromContext` to parse context docker endpoint metadata. Also remove `dockerapi.NegotiateAPIVersion(ctx)` which is already provided by `dockerclient.NewClientWithOpts`. Signed-off-by: CrazyMax
adds a bug report [issue forms template](https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-issue-forms). will look like this:    Signed-off-by: CrazyMax
follow-up #830 Has been reviewed based on [your comments](https://github.com/docker/buildx/pull/830#pullrequestreview-811800194) @tonistiigi. After that we will be able to implement filter/format for some commands. I kept some kubernetes driver logic as it...
Atm the bake definition needs to be opened to find out available targets. This is not practical and should be available through the cli. Suggest to add a `--targets` or...
**- What I did** if build subcommand has changed to a builder alias (buildx), user would expect `docker build` to always create a local docker image (default context builder). this...
Follow-up #209 to split a bit what was done. This one adds a Dockerfile to ease cross compilation and a simple GHA workflow that will just build the Dockerfile. Jenkinsfile...