Docker in 5 Minutes | System Design

Поділитися
Вставка
  • Опубліковано 14 лип 2024
  • Visit Our Website: interviewpen.com/?...
    Join Our Discord (24/7 help): / discord
    Join Our Newsletter - The Blueprint: theblueprint.dev/subscribe
    Like & Subscribe: / @interviewpen
    You've probably heard about Docker, but what is it really? Why do people use it? What's the difference between a container and an image? This video gives you the fundamentals you'll need to get started with Docker in just 5 minutes.
    Table of Contents:
    0:00 - Introduction
    0:14 - What is a Container
    0:47 - What is an Image
    1:47 - Version Control
    2:03 - Containers vs VMs
    2:38 - Using Docker
    3:12 - Practical Example
    4:39 - Conclusion
    5:00 - Go to interviewpen.com
    Socials:
    Twitter: / interviewpen
    Twitter (The Blueprint): / theblueprintdev
    LinkedIn: / interviewpen
    Website: interviewpen.com/?...

КОМЕНТАРІ • 25

  • @Ayor88
    @Ayor88 7 місяців тому +7

    I like this specific speaker a lot more than the others !

  • @abhi9988
    @abhi9988 5 місяців тому +1

    One of the best 5 minute tutorials I've seen. Concepts are really clearly explained, would love a part 2!

  • @joely2k83
    @joely2k83 8 місяців тому

    Great sharing!! Thank You!! One of the best 5mins worth (time) spend! :)

  • @zeydtc
    @zeydtc 5 місяців тому

    Great video! Thanks!

    • @interviewpen
      @interviewpen  5 місяців тому +1

      Thanks, glad you liked it!

  • @frankguo1748
    @frankguo1748 4 місяці тому

    As efficient as the other video you made. Thanks a lot.

  • @surajmandal_567
    @surajmandal_567 9 місяців тому +2

    Was waiting for a docker video. 😂

  • @esaiemartinez654
    @esaiemartinez654 9 місяців тому

    Truly great, sincerely

  • @almanduku9043
    @almanduku9043 6 місяців тому +1

    Thx man

  • @JegErN0rsk
    @JegErN0rsk 9 місяців тому

    Great video 👍

  • @proudmoroccan8164
    @proudmoroccan8164 9 місяців тому

    Thank you sharing.

    • @interviewpen
      @interviewpen  9 місяців тому +1

      Thanks for watching, stay tuned for more like this :)

  • @tremolony4924
    @tremolony4924 7 місяців тому +1

    Part 2: Volumes, Networks and docker-compose.yaml files

  • @NimaqAlizadeh
    @NimaqAlizadeh 28 днів тому

    Nice🎉

  • @Ripred0219
    @Ripred0219 6 місяців тому

    What are some specific examples of bugs that may occur that having one single source of truth via congruent containers fixes?

    • @interviewpen
      @interviewpen  6 місяців тому

      Assuming you're referring to having a reproducible container on any machine... One really common issue is having the wrong version of a runtime, for example your dev environment runs python 3.10 while production runs python 3.9. Everything might work fine on your dev machine, but as soon as you deploy, you'll face bugs from having a different python version. Similar issues arise with libraries compiled for a specific operating system, or having pertinent files stored in random places on your dev machine, etc. Hope that helps!