Dockerize an Angular Application using Nginx

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

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

  • @borelmba9832
    @borelmba9832 7 หลายเดือนก่อน +3

    please kindly do a video on securing the deployed application with HTTPS certificate 🤲

  • @lolgamer4265
    @lolgamer4265 9 หลายเดือนก่อน +1

    Really awsome tutorial. It gave me a better understanding of how stuff works. Thanks again

  • @sanghmitramaurya4447
    @sanghmitramaurya4447 ปีที่แล้ว +1

    Thank You Really good video help me alot during deploying our project 🥰

    • @GetArrays
      @GetArrays  ปีที่แล้ว

      You’re welcome

  • @karuifeather
    @karuifeather 11 หลายเดือนก่อน +3

    yo dude is this ever gonna go on udemy? great work btw!

  • @marvinkuang5276
    @marvinkuang5276 10 หลายเดือนก่อน

    Hi guy, there are so many details in video especially environment files really help me a lot.

    • @GetArrays
      @GetArrays  10 หลายเดือนก่อน

      Glad it was helpful!

  • @borelmba9832
    @borelmba9832 7 หลายเดือนก่อน

    thanks a lot. i've been block on that 404 not found problem with my app finally found the solution here

    • @GetArrays
      @GetArrays  7 หลายเดือนก่อน

      You're welcome

  • @yashshinde8185
    @yashshinde8185 2 หลายเดือนก่อน

    Very nice tutorial I have one doubt this is kind for production right so if I am using for development will it reflect changes in real time just as we get in for ng serve?

  • @marioehab8178
    @marioehab8178 11 หลายเดือนก่อน +1

    great explanation, but it worked for me without the npx ngcc part.
    where can i find the breadcrumb part of this tutorial ?
    Thanks you.

    • @GetArrays
      @GetArrays  11 หลายเดือนก่อน

      You don’t need gcc per say. What breadcrumb?

    • @marioehab8178
      @marioehab8178 10 หลายเดือนก่อน

      the navigation when you access home > profile > ....@@GetArrays

  • @temporafugiunt
    @temporafugiunt 9 หลายเดือนก่อน

    Very instructive, thanks!

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

    at 36:02 you logged into linux computer from current computer using ssh because your current computer did not have docker installed in it. so now you'll use docker remotely from diff machine .correct??

  • @IbrahimIbrahim-pe2kq
    @IbrahimIbrahim-pe2kq หลายเดือนก่อน

    is it possible to read enviroment variable passed to my docker desktop when i click run, i want to change for example api url without rebulding the angular

  • @WilverAranaR.
    @WilverAranaR. 9 หลายเดือนก่อน +2

    I just get "welcome to Ngnix...", I don't understand why? I don't show me my project.

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

      me too bro, i dont understend why... did you solve it?

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

      ​@@jacopopilotta5189 Of course bro!, I solved it.

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

      same here.. did u find any solution?

    • @WilverAranaR.
      @WilverAranaR. หลายเดือนก่อน

      @@jacopopilotta5189 YES

    • @WilverAranaR.
      @WilverAranaR. หลายเดือนก่อน

      @@ovidiumihoc EFECTLY!

  • @pod0269
    @pod0269 11 หลายเดือนก่อน

    great video!

  • @soumiahachami
    @soumiahachami 6 หลายเดือนก่อน

    Thank you

  • @ahmetarslan2166
    @ahmetarslan2166 ปีที่แล้ว

    Hello from turkey keep going

    • @GetArrays
      @GetArrays  ปีที่แล้ว

      Thank you, I will

  • @ADC3131
    @ADC3131 9 หลายเดือนก่อน

    when configuring the environments, we used the ip address of the computer in the API_BASE _URL. in this case if I am working with other people on the same project, do they all have to configure this for themselves?

    • @GetArrays
      @GetArrays  9 หลายเดือนก่อน

      The API_BASE_URL is the url of the back end application. There should be a standard for what the URL should be depending on your company/team.

  • @congdatt
    @congdatt ปีที่แล้ว

    Nice sư bro 🎉🎉🎉

  • @esmaeeilenani2005
    @esmaeeilenani2005 ปีที่แล้ว

    can i pass my back end url as environment variable in the docker file ?

    • @GetArrays
      @GetArrays  ปีที่แล้ว

      I’m not sure. Might be tricky to pull this off tbh.

  • @prabuk3819
    @prabuk3819 6 หลายเดือนก่อน

    Hi I tried the below docker-compose.yml, but facing this issue "\docker-compose.yml: services.responsive-exercises Additional property port is not allowed"
    any idea, what is wrong in the below code.
    services:
    responsive-exercises:
    container_name: responsiveexercisescontainer
    build: .
    image: responsive-exercises:v1
    port:
    - 80:80
    expose:
    - 80
    networks:
    - internalnet
    networks:
    internalnet:
    driver: bridge