Це відео не доступне.
Перепрошуємо.

How are Docker Image Layers actually created ? Secret Sauce Inside

Поділитися
Вставка
  • Опубліковано 19 сер 2024
  • / devopstribe

КОМЕНТАРІ • 16

  • @rajashekhargunaki2085
    @rajashekhargunaki2085 2 роки тому +1

    Definitely, it would help people understand things better, especially when executing commands they get to know what happens in the background.

  • @Darren-os8gp
    @Darren-os8gp Рік тому +2

    Amazing explanation

  • @vijayanandjeeva2163
    @vijayanandjeeva2163 Рік тому +1

    pictorial representation always makes a visual subtle in sub-conscious mind... nice

  • @andremelo5465
    @andremelo5465 3 роки тому

    "one image worth thousand words", Well done , thanks!

  • @pranavjamadagni5084
    @pranavjamadagni5084 4 роки тому +1

    Well explained!! Thanks!

  • @aayushsood1221
    @aayushsood1221 3 роки тому

    Excellent stuff

  • @sekharr4163
    @sekharr4163 3 роки тому

    Well explained.

  • @mikailagirman4999
    @mikailagirman4999 3 роки тому

    Perfect man. Thank you a lot.

  • @keithwhitson
    @keithwhitson Рік тому

    I like it

  • @wingcyx
    @wingcyx 3 роки тому +1

    Great explanation! Thank you! But I have a question: What happens with the layers if we update an existing image (e.g. your 8-layers image)? Does it rebuild all the 8 layers from base images and delete the old ones? Or it adds additional layers to the existing 8L?

    • @SchoolofDevops
      @SchoolofDevops  Рік тому

      FROM instruction brings all those 8 layers as the first step. Which means, none of the base layers are rebuilt. You start with that as a base, and then anything in your dockerfile gets added as a layer each.

  • @madhu_parimi
    @madhu_parimi 3 роки тому

    Thanks! it was really interesting!

  • @shaileshkumarshetty4401
    @shaileshkumarshetty4401 2 роки тому

    nice

  • @Darren-os8gp
    @Darren-os8gp Рік тому

    Hi can you explaining the layering when there are multi stage builds

    • @SchoolofDevops
      @SchoolofDevops  Рік тому

      With multi stage builds, each stage gets converted into a new image. Which would mean everything except for the last stage is discarded. I will create a more elaborate video explaining this. Keep an eye on the updates to the channel and you shall see it by the end of this week.

    • @Darren-os8gp
      @Darren-os8gp Рік тому

      @@SchoolofDevops understood makes more sense now of how multi stage builds reduce image layers.