I have a custom Sql Server Docker image which I would like to add to my Aspire project. The image exposes port 1433. How do I bind that to endpoint assigned by Aspire? I plan on adding other containers in a similar way that have nothing to do with sql server once I get this working.
Configuring it like this runs the container but does not bind the port from the endpoint:
<code>builder.AddContainer("custom-sql-container", "my.sql.image")
.WithEndpoint(1433, 1433);
</code>
<code>builder.AddContainer("custom-sql-container", "my.sql.image")
.WithEndpoint(1433, 1433);
</code>
builder.AddContainer("custom-sql-container", "my.sql.image")
.WithEndpoint(1433, 1433);