captainfalcon23

Results 42 comments of captainfalcon23

> s of the `for_each` collecti Ah got you. Well, my usecase which led me here is something along the lines of this: we have 3 layers to most of...

I fixed this by modifying core/db/models/specification.py and changed line 37 from: ``` complexity: Mapped[str] = mapped_column(server_default=Complexity.HARD) ``` to: ``` complexity: Mapped[str] = mapped_column(default=Complexity.HARD) ``` And also changed line 55 to:...

Fresh uninstall/install of latest docker desktop on Win 10, and my CPU spikes > 50% usage with no containers running :( How is this not a higher priority for the...

When we previously used T.SC, we did sync the audit findings, but noticed it would always create duplicates, so stopped that. Interesting that the data doesn’t line up, I know...

I fixed this by modifying core/db/models/specification.py and changed line 37 from: ``` complexity: Mapped[str] = mapped_column(server_default=Complexity.HARD) ``` to: ``` complexity: Mapped[str] = mapped_column(default=Complexity.HARD) ``` And also changed line 55 to:...

Can you please share how to configure this in compose file? Or link to the docs :) I couldn't see a reference in the MR.

Hi @ndeloof , I finally got some time to test this today and it didn't work. These are the steps I followed: ``` # compose ver: Docker Compose version v2.17.0-rc.1...

@tonistiigi there are two main considerations here: 1. If I run the build in CI environment, I want the output colourized 2. I think it would be good for an...

We see the same issue with https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/eks_addon "configuration_values". We should be able to pass formatted json and terraform should be able to handle the formatting/whitespaces. Running terraform 1.2.3: ``` Initializing...