CrazyMax

Results 1192 comments of CrazyMax

Hi, same as https://github.com/crazy-max/xgo/issues/19#issuecomment-740139594

I've just migrating from bower/npm to yarn on a project if you want to take a look : https://github.com/neard/neard.github.io

I don't think we should have explicit envs for each LibreNMS config in this image but instead use live config as shown in https://github.com/librenms/docker?tab=readme-ov-file#live-config In your case you could create...

> An input that tells the Action to just use the ref already checked out (likely by actions/checkout) This is already possible using the [Git context](https://github.com/docker/build-push-action/?tab=readme-ov-file#git-context) with `context: "{{defaultContext}}#${{ matrix.branch...

> Access restrictions provide cache isolation and security by creating a logical boundary between different branches or tags. Workflow runs can restore caches created in either the current branch or...

@aderk Sorry for the delay, do you have a link to your repo? Are you using submodules? ``` #1 0.051 fatal: Not a valid object name SHA^{commit} ``` Also this...

> How does this cache get invalidated? when image is downloaded from cache it first loads it to docker store: https://github.com/docker/setup-qemu-action/actions/runs/9775565828/job/26986391188#step:3:110 and to make sure it's up to date we...

> Compares the tagged version against all existing versions in the repository to determine if it is the highest. I wonder why you would need this at all? I guess...

You can use the [matrix feature](https://docs.docker.com/build/bake/reference/#targetmatrix) for this purpose, like: ```hcl target "default" { name = "build-${tgt}" matrix = { tgt = ["foo", "bar"] } dockerfile = "Dockerfile.${tgt}" tags =...