Lesson 5 | Complete Docker Tutorial | How to use Docker

Поделиться
HTML-код
  • Опубликовано: 10 ноя 2024

Комментарии • 20

  • @sre101
    @sre101  11 месяцев назад

    You will gain much deeper understanding of this video if you've already watched my 5-min video about the Architecture and Key components of Docker
    Here's the video if you haven't watched it -> ruclips.net/video/2-4LDgcAhWM/видео.htmlsi

  • @yunusfaraz4990
    @yunusfaraz4990 8 месяцев назад

    For health of containers multiple ways are there:
    1. for container orch like Docker Swarm, Kubernetes, or Docker Compose use their liveness or readiness probes
    2. use monitoring tools like grafana, datadog
    3. or in dockerfile mention healthchecks.
    Then these alerts can be tied to SNS or so to alerts in teams or SMS or mail

    • @sre101
      @sre101  8 месяцев назад

      that's correct, all these orchestrators like Kubernetes also emit a lot of metrics that we can consume to better monitor the health of our applications.

  • @vaibhavxlr
    @vaibhavxlr 9 месяцев назад

    Hi Raghav! This is clearly the best playlist on RUclips to learn about Docker/ containers in general. It would be great, if you could provide the correct answers/approaches of questions you ask in the end of the videos in description or somewhere else. Thanks!

    • @sre101
      @sre101  9 месяцев назад +1

      Thank you Vaibhav, means a lot!
      I agree, thanks for the feedback and I will get to work on this :)

  • @ananjaygurjar
    @ananjaygurjar 6 месяцев назад

    Great Series Raghav!

    • @sre101
      @sre101  5 месяцев назад

      thanks Ananjay!

  • @TravelWithIndoCanadian
    @TravelWithIndoCanadian 11 месяцев назад

    I just saw your post in linkedin and got curious about your channel. This is what i was learning today. Loved it how it popped up in my feed

    • @sre101
      @sre101  11 месяцев назад

      That means a lot to me, thank you :)
      Feel free to share other topics you're curious to learn about.

  • @TOLANIAKINTAYO
    @TOLANIAKINTAYO 8 месяцев назад

    This was helpful, thank you Raghav

    • @sre101
      @sre101  8 месяцев назад

      I'm glad you found it useful :)

  • @ahmadizzaz
    @ahmadizzaz 11 месяцев назад

    Hello Raghav! Came here from LinkedIn and started watching your entire series on docker. Was wondering if you will ever do a comparison between Docker vs Kubernetes? Once again, thanks so much for the very knowledgeable information!

    • @sre101
      @sre101  11 месяцев назад +1

      Great timing Ahmad :)
      My video on Docker vs Kubernetes is coming out next Monday!

    • @ahmadizzaz
      @ahmadizzaz 11 месяцев назад

      @@sre101 cant wait!

  • @shaikhrahil6880
    @shaikhrahil6880 11 месяцев назад

    Great explanation 😊

    • @sre101
      @sre101  11 месяцев назад

      Thank you! 😃

  • @HanafiYusufSamAfghani
    @HanafiYusufSamAfghani 8 месяцев назад +1

    hope you can share for us to run stable diffusion comfyui with rocm amd on windows using docker mate :)

    • @sre101
      @sre101  8 месяцев назад +1

      Thanks for the feedback! I've had very little dealing with Machine learning, so hopefully I can collab and release something like this soon

  • @yunusfaraz4990
    @yunusfaraz4990 8 месяцев назад

    The commands at the start are these ?
    Updating libraries and python dependencies using bash command ?
    "Docker creates intermediate containers for each instruction in the Dockerfile. Each instruction in the Dockerfile results in the creation of a new intermediate container that represents the state of the filesystem after executing that instruction."

    • @sre101
      @sre101  8 месяцев назад

      Correct. Docker creates intermediary LAYERS.
      docs.docker.com/build/guide/layers/