<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Debug School: Mayank</title>
    <description>The latest articles on Debug School by Mayank (@gandotramayank_895).</description>
    <link>https://www.debug.school/gandotramayank_895</link>
    <image>
      <url>https://www.debug.school/images/7Ri-R3sTC3lkvl1nrWR0bkcqbsgGRPmc6At9YS4VHy4/rs:fill:90:90/g:sm/mb:500000/ar:1/aHR0cHM6Ly93d3cu/ZGVidWcuc2Nob29s/L3VwbG9hZHMvdXNl/ci9wcm9maWxlX2lt/YWdlLzIyMi8yNzUz/Mjk4My1iYjA2LTQz/NzgtYjdlMS00MzE4/NWQ4ZDAyYmYucG5n</url>
      <title>Debug School: Mayank</title>
      <link>https://www.debug.school/gandotramayank_895</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://www.debug.school/feed/gandotramayank_895"/>
    <language>en</language>
    <item>
      <title>How can we store container data in memory using docker volume</title>
      <dc:creator>Mayank</dc:creator>
      <pubDate>Wed, 16 Nov 2022 05:36:04 +0000</pubDate>
      <link>https://www.debug.school/gandotramayank_895/how-can-we-store-container-data-in-memory-using-docker-volume-2c29</link>
      <guid>https://www.debug.school/gandotramayank_895/how-can-we-store-container-data-in-memory-using-docker-volume-2c29</guid>
      <description>&lt;p&gt;We can use docker tmpfs volume to store container data in host's memory on linux.&lt;br&gt;
This is used when we don't want to write sensitive data or data that relates to non-persistent application state in the container layer or on the host FS.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>What is a Docker image. Explain in 10 points.</title>
      <dc:creator>Mayank</dc:creator>
      <pubDate>Tue, 15 Nov 2022 06:48:21 +0000</pubDate>
      <link>https://www.debug.school/gandotramayank_895/what-is-a-docker-image-explain-in-10-points-3na</link>
      <guid>https://www.debug.school/gandotramayank_895/what-is-a-docker-image-explain-in-10-points-3na</guid>
      <description>&lt;ul&gt;
&lt;li&gt;docker images are stored in hub.docker.com called registry.&lt;/li&gt;
&lt;li&gt;All the layers have relationship with each other if you are pulling the top layer the parent layer will be pulled automatically&lt;/li&gt;
&lt;li&gt;It's the layers of file system&lt;/li&gt;
&lt;li&gt;Docker image consists of multiple filesystems -- ROOTFS + USERFS + ...&lt;/li&gt;
&lt;li&gt;Docker image has file system versioning.&lt;/li&gt;
&lt;li&gt;For encrypting docker images, sha2-256bit algorithm is used.&lt;/li&gt;
&lt;li&gt;All these layers merge to create one layer called mount.&lt;/li&gt;
&lt;li&gt;We can see the layer information using "df -kh" and also the memory using "du -h --max-dept=1"&lt;/li&gt;
&lt;li&gt;When we start a container there is a merge layer will get created, which is the combination of all the layers which we have pulled&lt;/li&gt;
&lt;li&gt;When we add some data into the container and even we stopped the container after that, the data will be available under overlay2 folder as a layer, and it will get attached to the container once is started.&lt;/li&gt;
&lt;/ul&gt;

</description>
    </item>
    <item>
      <title>Diff btw docker update and docker wait.</title>
      <dc:creator>Mayank</dc:creator>
      <pubDate>Tue, 15 Nov 2022 05:13:55 +0000</pubDate>
      <link>https://www.debug.school/gandotramayank_895/diff-btw-docker-update-and-docker-wait-18cf</link>
      <guid>https://www.debug.school/gandotramayank_895/diff-btw-docker-update-and-docker-wait-18cf</guid>
      <description>&lt;p&gt;What is the use of docker update command?&lt;br&gt;
docker update is used to update configs of one or more containers. We can set cpu resources,restart policy, memory limitations etc of containers using this command.&lt;/p&gt;

&lt;p&gt;What is the use of Docker wait?&lt;br&gt;
Docker wait container blocks until the container is exited and returns the exit code.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>My basic understanding regarding docker and containers.</title>
      <dc:creator>Mayank</dc:creator>
      <pubDate>Mon, 14 Nov 2022 07:19:51 +0000</pubDate>
      <link>https://www.debug.school/gandotramayank_895/my-basic-understanding-regarding-docker-and-containers-3mn7</link>
      <guid>https://www.debug.school/gandotramayank_895/my-basic-understanding-regarding-docker-and-containers-3mn7</guid>
      <description>&lt;p&gt;What is Docker?&lt;br&gt;
Docker is a container management system. Each container run in an isolated manner. each container is responsible for its assigned application to run so docker enables user to build, deploy, run containers so using single OS image.&lt;br&gt;
Why docker?&lt;br&gt;
Cost effective, easy to manage, no worries to purchase different OS license.&lt;br&gt;
What is container?&lt;br&gt;
Container is like an instance of an OS on which only limited things are installed which are necessary to run an application for which container is instantiated. They provide the similar functionality like of a VM but with virtualize OS.&lt;br&gt;
Docker workflow?&lt;br&gt;
USer&amp;gt;&amp;gt;docker client&amp;gt;&amp;gt;docker host&amp;gt;&amp;gt;docker registry&amp;gt;&amp;gt;docker image&lt;br&gt;
How container created?&lt;br&gt;
docker helps in creating container with the help of kernel on which docker is installed.&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
