Dockerize Your .NET Application in 5 Minutes!

แชร์
ฝัง
  • เผยแพร่เมื่อ 20 พ.ย. 2024

ความคิดเห็น • 28

  • @hardikparmar1665
    @hardikparmar1665 5 หลายเดือนก่อน +2

    Superbly explained.
    Crystal clear clarity...!!!
    Just one request, can you please give a sequence number to each video for this playlist.
    So that I can watch it with ease sequentially.
    Thanks!

  • @HackerUC
    @HackerUC 5 หลายเดือนก่อน

    Thanks for clearly explaining the Dockerfile. I dockerized an API not too long ago, but I let Rider create the Dockerfile. Your video explained some things I didn't fully understand in the Dockerfile

  • @andersjuul8310
    @andersjuul8310 5 หลายเดือนก่อน

    Lovely, very condensed video! I love to get a better understanding of the things done for me "automatically". Things that are scaffolded for us are often hard to progress from. This helps. Thanks.

  • @AslamNazeerShaikh
    @AslamNazeerShaikh 5 หลายเดือนก่อน +6

    Thanks ❤ for the video.
    Also request.. we need more videos on docker with .net distributed architecture. 🎉

  • @ricardoribeiro4560
    @ricardoribeiro4560 5 หลายเดือนก่อน +9

    Hi, love the videos, can you add to the title the part number? so we can have an order to search later.

    • @amantinband
      @amantinband  5 หลายเดือนก่อน +6

      The order in the playlist should be correct. I'm reluctant to add the series number as part of the title since series perform worse on youtube than standalone videos

    • @ricardoribeiro4560
      @ricardoribeiro4560 4 หลายเดือนก่อน

      @@amantinband agree no problem

  • @marcusalves7
    @marcusalves7 5 หลายเดือนก่อน

    great video, would've loved to see also with multiple projects and running migrations

  • @eqwerty610
    @eqwerty610 5 หลายเดือนก่อน +5

    Maybe I am outdated on this, but since we have a dedicated step for "dotnet restore", shouldn't we use the "--no-restore" option in the build and publish command, to disable the implicit restore?

    • @matiascasag
      @matiascasag 5 หลายเดือนก่อน

      Yeap and i think he could use the Alpine Versions of dotnet to get a smaller binary

    • @vasiliyfofanov2605
      @vasiliyfofanov2605 6 วันที่ผ่านมา

      And for the "dotnet publish" we probably need to add "--no-build"

  • @ivandrofly
    @ivandrofly 5 หลายเดือนก่อน

    Thanks for the video - Rider IDE as support to generate docker file for your project very easily actually
    but it's always good to know how to do it manually though

  • @muczos
    @muczos 5 หลายเดือนก่อน +2

    Hi @Amichai will you ever do a DAPR content?

  • @jrguedes
    @jrguedes 28 วันที่ผ่านมา

    Great video!

  • @DaminGamerMC
    @DaminGamerMC 5 หลายเดือนก่อน +3

    there is a lot there that i dont know like what is `FROM build as publish`

  • @mnursat
    @mnursat 5 หลายเดือนก่อน +1

    Awesome! Really simple explanation

  • @dzllz
    @dzllz 5 หลายเดือนก่อน +1

    Very cool! My app runs on an EC2 aws instance and relies on local storage on that instance for storing images etc.
    What would be the next step for me to dockerize? Outsource the storage to AWS S3?

    • @amantinband
      @amantinband  5 หลายเดือนก่อน +2

      I’ll be covering one possible solution in next week's video: The Better Way To Use Docker
      th-cam.com/video/JiJeZOHx0ow/w-d-xo.html

  • @sudeolmez5480
    @sudeolmez5480 4 หลายเดือนก่อน

    Hi! Thank you for this great explanation, however I am having an issue about connecting Mongodb with dotnet on docker. I keep getting an error of 500 although I think I added them all to compose-yml file properly. It really would be great that if you can take a video about it. Thanks again!!!

  • @ArunKumar-y1d5v
    @ArunKumar-y1d5v 5 หลายเดือนก่อน +1

    Do I need to modify the restoration process because I have multiple layers in my project?

    • @amantinband
      @amantinband  5 หลายเดือนก่อน +1

      Assuming you meant multiple projects - yes. Here’s an example: github.com/amantinband/clean-architecture/blob/main/Dockerfile

  • @floriandraxler3868
    @floriandraxler3868 3 หลายเดือนก่อน

    is that video speed up a little or do you have some sort of voice adjustment going on?

  • @xardasu3646
    @xardasu3646 5 หลายเดือนก่อน

    Will hot reload works in this docker configuration ?.

    • @meetingattender8132
      @meetingattender8132 4 หลายเดือนก่อน

      yes github issue #322 repo microsoft/dockertools

  • @pilotboba
    @pilotboba 5 หลายเดือนก่อน

    Doesn't .Net 8 support building docker containers with MS build without using a dockerfile? I'm surprised you are showing dockerfile use here.