Antonio Ceccato
Antonio Ceccato
A workaround I'm using, added via the Custom CSS app: ```css #header > div { background: rgba(0, 0, 0, 0.33); } ``` This CSS targets the header's inner `div`s as...
This would be a great feature, with two main points: mapping POCOs (like EFCore7's `ToJson` owned entities) and mapping JSON DOM types (`System.Text.Json`'s `JsonDocument`/`JsonNode` and Newtonsoft's `JToken`). The former is...
With CLI v20.10.23 and its included buildx v0.10.0-docker, `docker buildx build .` successfully builds the image. With CLI v24.0.6 and buildx plugin v0.11.2, it also successfully builds the image.
Thank you for the update, unfortunately the behavior is exactly the same and with the same timings: ``` [+] Building 0.0s (0/0) docker:default listing workers for Build: failed to list...
@d4rkmen I am using 2.20.0 which works
@ndeloof any possibility of resolving this issue? 2.26.0 (with Docker CLI 26.0.0) has the exact same behavior, we can't upgrade from 2.20.0 because any newer version breaks building from a...
Oh that makes sense. I tried manually building via buildx 0.13.1 with `docker buildx build .` and it now behaves exactly like compose does; that's not what I expected, but...
I'd like to add that the multiplexing trick does not work on Windows since its OpenSSH implementation does not support the feature. Windows users can therefore only resort to the...
The solution found by @politician works in a non-Windows client environment, but on Windows with Microsoft's OpenSSH implementation you won't get very far: `ControlMaster` is not supported by Microsoft's implementation,...
I created a minimal project that reproduces the problem: https://github.com/LaXiS96/EFCoreIssue30818