Chiseled Docker image with ASP.NET Core and dotnet-monitor #6957
-
Hi 👋🏻 I'm running several ASP.NET Core apps based on the chiseled Docker image. I'd like to integrate What's the best way to accomplish that? From my current understanding, I'd have to build my own base image, combining both chiseled ASP.NET Core and Is that correct or is there an easier way, e.g. a pre-built Docker image from you guys that I can just grab? Thx! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
It depends on what your orchestration environment is; for example, if you are using Kubernetes or Docker compose (something that allows for multiple containers and allows for volume mounts), then you can run .NET Monitor as a sidecar without altering your application Docker image. See https://github.com/dotnet/dotnet-monitor/blob/main/documentation/kubernetes.md for an example of how to do this Kubernetes. |
Beta Was this translation helpful? Give feedback.
It depends on what your orchestration environment is; for example, if you are using Kubernetes or Docker compose (something that allows for multiple containers and allows for volume mounts), then you can run .NET Monitor as a sidecar without altering your application Docker image. See https://github.com/dotnet/dotnet-monitor/blob/main/documentation/kubernetes.md for an example of how to do this Kubernetes.