<?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: Raju Maramulla</title>
    <description>The latest articles on Debug School by Raju Maramulla (@raju).</description>
    <link>https://www.debug.school/raju</link>
    <image>
      <url>https://www.debug.school/images/Plrr9YKZZwYkGcYqCDWJcqISl9_Tzrg3oNAB8EiQ5Bw/rs:fill:90:90/g:sm/mb:500000/ar:1/aHR0cHM6Ly93d3cu/ZGVidWcuc2Nob29s/L3VwbG9hZHMvdXNl/ci9wcm9maWxlX2lt/YWdlLzIyMy8yMWFk/ZGFkNy1mYjZjLTRl/ODktOGI5Ni04Yjc4/Y2JiNWE0YWUucG5n</url>
      <title>Debug School: Raju Maramulla</title>
      <link>https://www.debug.school/raju</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://www.debug.school/feed/raju"/>
    <language>en</language>
    <item>
      <title>Day5_Git_Commands</title>
      <dc:creator>Raju Maramulla</dc:creator>
      <pubDate>Fri, 18 Nov 2022 07:31:17 +0000</pubDate>
      <link>https://www.debug.school/raju/day5gitcommands-3am5</link>
      <guid>https://www.debug.school/raju/day5gitcommands-3am5</guid>
      <description>&lt;p&gt;git init        -- Initialize the empty repository&lt;br&gt;
git add         -- Add files to the repo&lt;br&gt;
git config      -- Add author details to the repo&lt;/p&gt;

&lt;p&gt;git remote add  -- Add alias name origin to the remote URL&lt;br&gt;
git clone       -- Clone the remote repo&lt;/p&gt;

&lt;p&gt;git log         -- Check the changes on the current repo&lt;br&gt;
git status      -- Check status of the files on the current branch&lt;/p&gt;

&lt;p&gt;git pull        -- Pull the remote changes from remote repo master branch&lt;br&gt;
git push        -- Push the local changes to remote repo master branch&lt;/p&gt;

&lt;p&gt;git clean       -- Clean the current changes &lt;br&gt;
git reset       -- Reset the files&lt;br&gt;
git diff        -- Check changes in two commits&lt;/p&gt;

&lt;p&gt;git branch      -- To list the branches in current repo&lt;br&gt;
git checkout    -- To checkout the new branch&lt;br&gt;
git commit      -- To commit the local changes to the Staging area&lt;br&gt;
git merge       -- To merge current branch with master&lt;br&gt;
git cherry-pick -- To merge particular commit to the master branch&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Day3_Assignment</title>
      <dc:creator>Raju Maramulla</dc:creator>
      <pubDate>Wed, 16 Nov 2022 05:37:00 +0000</pubDate>
      <link>https://www.debug.school/raju/day3assignment-25lh</link>
      <guid>https://www.debug.school/raju/day3assignment-25lh</guid>
      <description>&lt;p&gt;Q- How can we store container data in memory using docker volume&lt;/p&gt;

&lt;p&gt;-tmpfs is the filesystem where the mounts will be stored in memory only while running the container, and it will be used at runtime.&lt;br&gt;
-Data from tmpfs mount will not written to the disk and data from tmpfs will be lost once the container stops.&lt;/p&gt;

&lt;p&gt;docker run -d --name &lt;code&gt;docker_image_name&lt;/code&gt;--mount source=&lt;code&gt;source_dir_path&lt;/code&gt;,target=&lt;code&gt;target_dir_path&lt;/code&gt; ubuntu&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Docker Image - Day 2</title>
      <dc:creator>Raju Maramulla</dc:creator>
      <pubDate>Tue, 15 Nov 2022 06:40:00 +0000</pubDate>
      <link>https://www.debug.school/raju/docker-image-414l</link>
      <guid>https://www.debug.school/raju/docker-image-414l</guid>
      <description>&lt;ol&gt;
&lt;li&gt;Docker image will have filesystems(root fs, user fs &amp;amp; app fs) and parameters&lt;/li&gt;
&lt;li&gt;It will be identified with unique ID(docker imageID)&lt;/li&gt;
&lt;li&gt;Docker Images are multi-layered files, which are used to create the containers&lt;/li&gt;
&lt;li&gt;All the layers will be merged into one layer while creating the container&lt;/li&gt;
&lt;li&gt;Sha-256 Algorithm is used for creating docker image&lt;/li&gt;
&lt;/ol&gt;

</description>
    </item>
    <item>
      <title>Docker Understanding</title>
      <dc:creator>Raju Maramulla</dc:creator>
      <pubDate>Mon, 14 Nov 2022 07:28:37 +0000</pubDate>
      <link>https://www.debug.school/raju/docker-understanding-1aab</link>
      <guid>https://www.debug.school/raju/docker-understanding-1aab</guid>
      <description>&lt;p&gt;&lt;strong&gt;What is Docker?&lt;/strong&gt;&lt;br&gt;
Docker is a container management tool where application can run in isolation.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why Docker?&lt;/strong&gt;&lt;br&gt;
Docker is useful for cost saving, setup time and improve the quality of software&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What is Container&lt;/strong&gt;&lt;br&gt;
Container is VM image which contains the resources to run the application&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Docker workflow&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;How container created?&lt;/strong&gt;&lt;br&gt;
Human(request) -&amp;gt; Docker Client -&amp;gt; Docker Server -&amp;gt; OS Kernel -&amp;gt; ContainerD library -&amp;gt; Container&lt;/p&gt;

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