<?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: shashikiran</title>
    <description>The latest articles on Debug School by shashikiran (@manchikatlashashi_736).</description>
    <link>https://www.debug.school/manchikatlashashi_736</link>
    <image>
      <url>https://www.debug.school/images/Tdd4p7EeY_O_UeGYIx1D7ZPEd1WMZi7t1beUW4BACG8/rs:fill:90:90/g:sm/mb:500000/ar:1/aHR0cHM6Ly93d3cu/ZGVidWcuc2Nob29s/L3VwbG9hZHMvdXNl/ci9wcm9maWxlX2lt/YWdlLzIyMS9hODgx/ZTU3MC00M2NiLTRh/ZWYtODFlYi0zM2Uz/MTI3MzIwN2EucG5n</url>
      <title>Debug School: shashikiran</title>
      <link>https://www.debug.school/manchikatlashashi_736</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://www.debug.school/feed/manchikatlashashi_736"/>
    <language>en</language>
    <item>
      <title>Docker Volume type "tmpfs"</title>
      <dc:creator>shashikiran</dc:creator>
      <pubDate>Wed, 16 Nov 2022 05:22:07 +0000</pubDate>
      <link>https://www.debug.school/manchikatlashashi_736/docker-volume-type-tmpfs-40n3</link>
      <guid>https://www.debug.school/manchikatlashashi_736/docker-volume-type-tmpfs-40n3</guid>
      <description>&lt;p&gt;How can we store container data in memory using docker volume&lt;br&gt;
We use docker tmpfs volume to store container data in host's memory. As we are storing this in memory it will be volatile. Also we can not attach this volume with some other container because we don't know the Physical location in this case.&lt;/p&gt;

&lt;p&gt;Example:&lt;br&gt;
docker run -itd --name tmpfstest --tmpfs /var/tmpfs ubuntu&lt;/p&gt;

&lt;p&gt;Now if we inspect this container, we will get following in output:&lt;br&gt;
"Tmpfs": {&lt;br&gt;
"/var/tmpfs": ""&lt;br&gt;
}&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Day 2 Assignment 1</title>
      <dc:creator>shashikiran</dc:creator>
      <pubDate>Tue, 15 Nov 2022 04:36:00 +0000</pubDate>
      <link>https://www.debug.school/manchikatlashashi_736/day-2-assignment-1-3i9p</link>
      <guid>https://www.debug.school/manchikatlashashi_736/day-2-assignment-1-3i9p</guid>
      <description>&lt;p&gt;&lt;strong&gt;What is the use of "docker update"?&lt;/strong&gt; &lt;/p&gt;

&lt;p&gt;Docker Update is used to configuration of one or more containers, several options to configure CPU, memory.&lt;br&gt;
this can be done on runtime to modify the resources like number of CPU, memory limit, PID limit dynamically to avoid limit the usage of resources on the host machine.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What is the use of "docker wait"?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Docker wait blocks until one or more containers stop, then print their exit codes&lt;/p&gt;

</description>
    </item>
    <item>
      <title>DevOps Training - Docker Assessment 2</title>
      <dc:creator>shashikiran</dc:creator>
      <pubDate>Mon, 14 Nov 2022 10:08:40 +0000</pubDate>
      <link>https://www.debug.school/manchikatlashashi_736/devops-training-docker-assessment-2-46k4</link>
      <guid>https://www.debug.school/manchikatlashashi_736/devops-training-docker-assessment-2-46k4</guid>
      <description>&lt;ol&gt;
&lt;li&gt;&lt;p&gt;What is the difference between docker pause and docker unpause? (Hint - docker stats)&lt;br&gt;
The &lt;strong&gt;docker pause&lt;/strong&gt; command suspends all processes &lt;br&gt;
&lt;strong&gt;docker unpause&lt;/strong&gt; command resumes all processes in the specified container.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;What is the difference between docker stop and docker kill (Hints - Return value of linux + SIGNALs)&lt;br&gt;
Below are the differences -&lt;br&gt;
a) &lt;strong&gt;docker stop&lt;/strong&gt;  1. shutdown the container &lt;br&gt;
                2. returns None as return value&lt;br&gt;
&lt;strong&gt;docker kill&lt;/strong&gt; 1. stops/terminates the container immediately.&lt;br&gt;
            2. docker kill sends a SIGKILL signal.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

</description>
    </item>
    <item>
      <title>DevOps Training - Docker Assessment 1</title>
      <dc:creator>shashikiran</dc:creator>
      <pubDate>Mon, 14 Nov 2022 10:05:01 +0000</pubDate>
      <link>https://www.debug.school/manchikatlashashi_736/devops-training-docker-assessment-1-555i</link>
      <guid>https://www.debug.school/manchikatlashashi_736/devops-training-docker-assessment-1-555i</guid>
      <description>&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;What is Docker?&lt;/strong&gt;
it is Container Management Tool which helps to build, deploy, run, update and manage containers.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Why Docker?&lt;/strong&gt;
it is used in order to mainly save time and resources. To avoid the havoc of multiple resource creation and management.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;What is Container&lt;/strong&gt;
it is a runnable instance of a docker image which can be used to run applications.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Docker workflow&lt;/strong&gt;
Docker Daemon -&amp;gt; Docker CLI -&amp;gt; Docker Engine API
Docker Host -&amp;gt; Docker Client -&amp;gt; Docker Registry (Hub)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;How container created?&lt;/strong&gt;
Source Docker Image -&amp;gt; Run the image -&amp;gt; make it active
Daemon requests the kernel for creating a Linux namespace with a mount, an isolated network and the runtime environment.&lt;/li&gt;
&lt;/ol&gt;

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