Get the source code for this video for FREE → the-dotnet-weekly.ck.page/aws-ecs Want to master Clean Architecture? Go here: bit.ly/3PupkOJ Want to unlock Modular Monoliths? Go here: bit.ly/3SXlzSt
@dieterstreck55822 ай бұрын
Thanks Milan for the great videos. Would you please do one for Digital Ocean?
@vvincent222 ай бұрын
How do we deploy multiple containers or deploying using docker compose. A good example can be How do we deploy the Modular Monoliths that contains multiple containers.
@MilanJovanovicTech2 ай бұрын
Great idea for a future video
@pilotboba2 ай бұрын
You wouldn't really use Docker Compose. You should use cloud formation or terraform. Generally with multiple containers you would define an ECS service. A service can contain multiple tasks (containers) and also auto scaling and other rules for orchestration. Doing stuff with the console is really more for dev stuff or learning/testing things.
@antukumar3822 ай бұрын
😊😊 😊
@ravindurasanjana42473 күн бұрын
@@MilanJovanovicTech It would be greate if you could demonstrate how to deploy multiple containers in Azure, whether for a microservice architecture or a modular monolith.
@digitnomad21 күн бұрын
As you know, you can build docker images programatically with Terraform. then a shell command pushes it to ECR automatically.
@MilanJovanovicTech21 күн бұрын
I didn't know. Thanks for teaching me!
@MatheusLB20092 ай бұрын
Would love to see more Azure instead of AWS content, not that there's anything wrong with AWS but .NET docs use only Azure examples, they kinda are expected to go together
@MilanJovanovicTech2 ай бұрын
Coming soon!
@shoooozzzz2 ай бұрын
why did Milan select "Task" instead of "Service"? Task's are standalone, run once and terminate.. Whereas Services are for things like a CRUD API... which is what he's demoing
@MilanJovanovicTech2 ай бұрын
Tasks are simpler to set up and demonstrate quickly.
@ravindurasanjana42473 күн бұрын
It would be helpful if you could demonstrate how to deploy multiple containers in Azure, whether for a microservice architecture or a modular monolith.
@MilanJovanovicTech2 күн бұрын
Will do
@ahimachaliboy1622 ай бұрын
Hi Milan, can you provide a video in which we restrict extra fields in json payload in c#
@MilanJovanovicTech2 ай бұрын
Which JSON payload?
@fleems9302 ай бұрын
Hi,Thanks for the fantastic video. Can you do another one with Azure as well?
@MilanJovanovicTech2 ай бұрын
Yes, releasing soon!
@natancolleoni2 ай бұрын
How can we automate that deploy through github actions?
@MilanJovanovicTech2 ай бұрын
You could use the Docker CLI / AWS CLI like I did here. There's also: aws.github.io/aws-dotnet-deploy/
@sunzhang-d9v2 ай бұрын
Do you want to dynamically add containers based on the number of visits?
@MilanJovanovicTech2 ай бұрын
Yes, we can do that
@DeejayMAK112 ай бұрын
@MilanJovanovicTech How do I automate this process? It seems like it will be quite complicated to build a pipeline to automate this process.
@pilotboba2 ай бұрын
With cloud formation or terraform. You ci can create or update the cfn stack with all the information needed to automate.
@MilanJovanovicTech2 ай бұрын
Looks like I need to make a CI video for AWS
@pilotboba2 ай бұрын
@@MilanJovanovicTech Maybe on cloud formation or the new kid CDK. We are moving to terraform so not using the CDK. But would solve some issues we've had.
@augustbryanflorese88822 ай бұрын
Yes would appreciate a CI CD followup of this topic!
@nouchance2 ай бұрын
“Hello Milan! A question for you: why don’t you use macOS or Linux for .NET development?”
@MilanJovanovicTech2 ай бұрын
I find windows easier
@karthikkeyan44602 ай бұрын
Excellent video. One question though. What about CORS ? I didn't see it being mentioned anywhere in the services / middleware pipeline.
@MilanJovanovicTech2 ай бұрын
You can configure it from your .NET app, for example.
@lightknight8762 ай бұрын
CORS?!!
@MilanJovanovicTech2 ай бұрын
You can configure it from your .NET app, for example.