Alex Crome
Alex Crome
Actually I think there may be something more broadly wrong with WaitFor on my machine If I simply have an App host with ```cs builder.AddSqlServer("sql") .AddDatabase("tempdb"); // Using `tempdb` as...
False alarm, this seems to be caused by #6002 . That said, I didn't get any information out of aspire to help debug this issue - I'd have hoped to...
I'm going to close this issue #6002 handles the underlying network issue with rancher, whilst the recent additions of Health Checks to the resource UI give you a way to...
@mitchdenny Do you have any examples of driving a custom resource through? I've got the following: ```cs public static IResourceBuilder AddCentralDb3(this IResourceBuilder sql, string name) { var appBuilder = sql.ApplicationBuilder;...
That's fair. I have also worked out how to get my custom resource to properly work with WaitFor - need to spawn a new Task tnside the BeforeStartEvent that awaits...
I have seen this "Error disposing log descriptor" a second time. Both times with a similar app host to above, and both times I have also seen the oddity from...
I've now seen a 3rd case of the "Error disposing log descriptor" error and this one did not line up with #5996, so I'm less convinced of the two being...
This seems like similar to #4218 - same underlying issue, although with different entrypoints (`AddContainer` vs `WithImage`)
Here's a stab with the API Template ## Background and Motivation Most places in the container ecosystem treat the image reference as a single string. For example, the `docker run`...
I can give this a go.