8 questions from the last 30 days
1
vote
3
answers
222
views
How come Azure Developer CLI says my Aspire bicep is invalid when running in pipelines?
I recently created a new Aspire project and I'm deploying it to Azure using the Azure DevOps Pipelines.
My goal is to run the pipelines whenever a trigger occurs, generate the infrastructure, ...
-1
votes
1
answer
160
views
Aspire publish not creating dockerfile
I’m working with Aspire in a .NET 10 RC2 project.
When I run:
aspire publish
it logs that it’s “creating Docker image”, but no Docker image is actually produced.
I have ran it with --debug and indeed ...
-3
votes
0
answers
48
views
Can't create a Postgres database with .NET Aspire
Was trying to create a database (retmarkdb), but only datatabase "postgres" (with password 'retmark123') is created.
// RetmarkApp.AppHost/AppHost.cs
var builder = DistributedApplication....
1
vote
0
answers
57
views
Docker container routing to YARP fails in Aspire
I have a software solution where there is
an ASP.NET Core 8.0 Web API running on Linux inside a Docker container (edge-service), making HTTPS GET and HTTPS POST to
an ASP.NET Core 8.0 Web API (front-...