CrazyMax

Results 273 issues of CrazyMax

Let's take the following definition with repeated and almost similar targets: ```hcl group "validate" { targets = ["validate-lint", "validate-vendor", "validate-docs", "validate-authors"] } target "validate-lint" { dockerfile = "./hack/dockerfiles/lint.Dockerfile" output =...

kind/enhancement
area/bake

While working on another PR I found out there are liquid warnings introduced by https://github.com/docker/docker.github.io/pull/15494 in the logs: https://github.com/docker/docker.github.io/runs/8288660605?check_suite_focus=true#step:4:491 ``` #15 44.17 Liquid Warning: Liquid syntax error (line 59): Expected...

area/Docs UX

Adds a new utility called `release-notes` that I find more appealing and declarative for the end user, starting with build one. This utility can be reused by other projects. we...

area/Docs UX
area/Build

follow-up https://github.com/docker/docker.github.io/pull/15250#issuecomment-1197924756 fix sitemap last modification date not being taken into account: ![image](https://user-images.githubusercontent.com/1951866/181793200-5346ff2e-1c10-471b-a2ae-c8a34c306d14.png) it will use git and fall back to file's `mtime` if necessary. also adds following entries to...

area/Docs UX

* https://github.com/moby/buildkit/pull/3186 - fixes https://github.com/moby/moby/issues/42261 - fixes https://github.com/docker/for-win/issues/10839 **- Description for the changelog** **- A picture of a cute animal (not mandatory but encouraged)**

status/2-code-review
impact/changelog
area/builder/buildkit

fixes #44298 **- What I did** Download busybox-w32 through a docker image to avoid making too much requests to https://frippery.org/files/busybox. **- How I did it** Created a GitHub repository https://github.com/crazy-max/docker-busybox-w32...

closes #70 Signed-off-by: CrazyMax

follow-up https://github.com/docker/setup-buildx-action/pull/175 There are cases where quotes need to be used for multi values fields like `name` for image type `output`: ```yaml set: | *.output=type=image,name="moby/buildkit:v0.11.0,moby/buildkit:latest",push=true ``` Currently it would fail...