I would like to make changes to a compose file after it has been loaded. Specifically, I would like to change the ports that are exposed by some of the services. Is this possible?
using (var svc = new Builder()
.UseContainer()
.UseCompose()
.FromFile(file)
.RemoveOrphans()
.Build().Start())
// @formatter:on
{
}