Ciaran McNulty

Results 222 comments of Ciaran McNulty

And to confirm, if I remove `--link` that stage says `[localstack 2/2]`

Looking at my terminal logs it's actually possible this is a not-graceful response to SIGTERM

Incidentally now `.` isn't allowed in target names this makes things more complicated!

Thanks @tonistiigi that sort of approach would work well

A fairly simplistic placeholder approach without the matrix being implemented in bake would actually enable a lot of stuff, not necessarily just matrix builds. ```hcl target "foo-${bar}" { [... variable...

@tonistiigi great question! I think you probably didn't meant to keep `${version}` in all of them? ```hcl target "${flavour}-php-${version}" { dockerfile = "${flavour}/Dockerfile" args = { PHP_VERSION = "${version}" }...

Reproducer: ```hcl group "default" { targets = ["foo", "bar"] } target "foo" { dockerfile-inline = "FROM php:5.6" tags = [] } target "bar" { dockerfile-inline = "FROM php:5.6" tags =...

I appreciate I could provide the target names to build, but I moved all the conditional logic into a function that generates the tags :)

Yes that's exactly what I had in mind 👍

Yep you can do this in GHA - have a job (e.g. the `base` one) generate some JSON and use the `fromJson()` function in your matrix def on the later...