<?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>DEV Community: Prajwal M</title>
    <description>The latest articles on DEV Community by Prajwal M (@prajwalm28).</description>
    <link>https://dev.to/prajwalm28</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3898813%2Fe35d32f7-fbbb-4385-a1ce-617d36c6f200.png</url>
      <title>DEV Community: Prajwal M</title>
      <link>https://dev.to/prajwalm28</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/prajwalm28"/>
    <language>en</language>
    <item>
      <title>Docker Basics: What I Wish I knew as a Beginner</title>
      <dc:creator>Prajwal M</dc:creator>
      <pubDate>Sun, 26 Apr 2026 13:34:43 +0000</pubDate>
      <link>https://dev.to/prajwalm28/docker-basics-what-i-wish-i-knew-as-a-beginner-gnf</link>
      <guid>https://dev.to/prajwalm28/docker-basics-what-i-wish-i-knew-as-a-beginner-gnf</guid>
      <description>&lt;p&gt;Docker can feel overwhelming at first. Here's a simple breakdown of the core concepts I learned as a software intern working with cloud infrastructure.&lt;/p&gt;

&lt;h1&gt;
  
  
  What is Docker?
&lt;/h1&gt;

&lt;p&gt;Docker is a tool that packages your application and everything it needs (libraries, dependencies, config) into a single unit called a container.&lt;/p&gt;

&lt;p&gt;Think of it like a lunchbox — everything your app needs to run is packed inside, so it works the same everywhere.&lt;/p&gt;

&lt;h1&gt;
  
  
  Key Concepts
&lt;/h1&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Image&lt;br&gt;
A blueprint/template. It defines what goes inside the container.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Container&lt;br&gt;
A running instance of an image. Like an object created from a class.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Dockerfile&lt;br&gt;
A text file with instructions to build an image.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Example:&lt;br&gt;
dockerfile&lt;br&gt;
FROM python:3.9&lt;br&gt;
WORKDIR /app&lt;br&gt;
COPY . .&lt;br&gt;
RUN pip install -r requirements.txt&lt;br&gt;
CMD ["python", "app.py"]&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Docker Hub
A public registry where you can find and share images. Like GitHub but for Docker images.&lt;/li&gt;
&lt;/ol&gt;

&lt;h1&gt;
  
  
  Basic Commands
&lt;/h1&gt;

&lt;p&gt;| Command | What it does |&lt;br&gt;
| &lt;code&gt;docker pull nginx&lt;/code&gt; | Download an image |&lt;br&gt;
| &lt;code&gt;docker run nginx&lt;/code&gt; | Run a container |&lt;br&gt;
| &lt;code&gt;docker ps&lt;/code&gt; | List running containers |&lt;br&gt;
| &lt;code&gt;docker stop &amp;lt;id&amp;gt;&lt;/code&gt; | Stop a container |&lt;br&gt;
| &lt;code&gt;docker images&lt;/code&gt; | List downloaded images |&lt;/p&gt;

&lt;h1&gt;
  
  
  When to Use Docker?
&lt;/h1&gt;

&lt;ul&gt;
&lt;li&gt;"It works on my machine" problems — Docker fixes this&lt;/li&gt;
&lt;li&gt;Running multiple apps with different dependencies&lt;/li&gt;
&lt;li&gt;Quick setup of databases, servers for testing&lt;/li&gt;
&lt;li&gt;Deploying apps consistently across environments&lt;/li&gt;
&lt;/ul&gt;

&lt;h1&gt;
  
  
  Conclusion
&lt;/h1&gt;

&lt;p&gt;Docker simplifies how we build, ship, and run applications. Start with these basics, practice with small projects, and it'll click quickly.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;I'm a software intern at Ericsson R&amp;amp;D working on cloud-native infrastructure. Follow me for more simplified tech content.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>devops</category>
      <category>docker</category>
      <category>tutorial</category>
    </item>
  </channel>
</rss>
