microsoft / microsoft/aspire

Add support for sidecar containers

Open
#625 12 comments 2 reactions 0 assignees View on GitHub
area-app-model needs-design
Dominant language
C#
Stars
6.3k
Forks
991
Avg merge
2d 15h
Merged PRs (30d)
196

Description

Deploy an application with a primary container as well as secondary sidecar containers. Something like:
``` C#
var builder = DistributedApplication.CreateBuilder(args);
builder.AddProject("webapplication")
.WithContainer("sidecar")
```
This should translate to

``` Bicep
containers: [
{
image: 'webpplication'
},
{
image: 'sidecar'
}
]
```

Contributor guide

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.