Add support for sidecar containers
Open
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
Assessment
This issue has not been assessed yet.