CrazyMax

Results 1198 comments of CrazyMax

Found the culprit: https://github.com/docker/buildx/blob/105c214d15802358e2cd02622a20c5803aa1ec5e/commands/util.go#L74 Long story short - since 0.9 we are now checking the context builder endpoint to make sure it's reachable before returning the instance: https://github.com/docker/buildx/pull/1129#issuecomment-1195542481. For `bake...

Made some changes to have a more generic release-notes layout so it can be used across our website: * We can define components with their respective entries like Docker Desktop...

> Okay, different error now, but still failing (so probably we're still missing a "skip" in BuildKit); Will be fixed by https://github.com/moby/buildkit/pull/3176

Argh guess we need a proper Windows base image after all: https://github.com/moby/moby/actions/runs/3249933557/jobs/5333050380#step:11:33 ``` Step 4/14 : FROM crazymax/busybox-w32:${BUSYBOX_VERSION} AS busybox FRP-3329-gcf0fa4d13: Pulling from crazymax/busybox-w32 9e578c36694c: Pulling fs layer 9e578c36694c: Download...

As suggested created a GitHub repository https://github.com/crazy-max/busybox-w32 (should be moved to moby org) and pushed binaries to GitHub Release: https://github.com/crazy-max/busybox-w32/releases/tag/FRP-3329-gcf0fa4d13. cc @sam-thibault Edit: https://github.com/moby/busybox/releases/tag/FRP-3329-gcf0fa4d13

> I think usually it adds them with `vndr` as well, unless it's a new dependency, but yeah.. 😂 Yes was a new one

See PR description about riscv64 support: https://github.com/moby/moby/pull/43529#issue-1216339752 > To add support for `riscv64` builds we need crossbuild packages for `riscv64` but current `golang` image with debian bullseye does not support...

@jdkent Looks like you're using the same cache scope `type=gha,scope=cached-stage` to write to: ```yaml set: | neurostore.tags=ghcr.io/${{ github.repository_owner }}/neurostore:${{ hashFiles('**/store/neurostore/**') }} neurostore.cache-from=type=registry,ref=ghcr.io/${{ github.repository_owner }}/neurostore:${{ hashFiles('**/store/neurostore/**') }} neurostore.cache-from=type=gha,scope=cached-stage neurostore.cache-to=type=gha,scope=cached-stage,mode=max nginx.tags=ghcr.io/${{ github.repository_owner...