<?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: Sneha Tomar</title>
    <description>The latest articles on DEV Community by Sneha Tomar (@sneha_tomar_23).</description>
    <link>https://dev.to/sneha_tomar_23</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%2F3669052%2F67074564-c1d9-4371-a329-bc9a03f6b40c.png</url>
      <title>DEV Community: Sneha Tomar</title>
      <link>https://dev.to/sneha_tomar_23</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/sneha_tomar_23"/>
    <language>en</language>
    <item>
      <title>Learning Jenkins by Building a CI/CD Pipeline for a Docker Compose Application</title>
      <dc:creator>Sneha Tomar</dc:creator>
      <pubDate>Thu, 15 Jan 2026 16:39:15 +0000</pubDate>
      <link>https://dev.to/sneha_tomar_23/learning-jenkins-by-building-a-cicd-pipeline-for-a-docker-compose-application-1725</link>
      <guid>https://dev.to/sneha_tomar_23/learning-jenkins-by-building-a-cicd-pipeline-for-a-docker-compose-application-1725</guid>
      <description>&lt;p&gt;After containerizing a three-tier MERN stack application using Docker Compose, the next natural step in my DevOps learning journey was to automate the build and deployment process.&lt;/p&gt;

&lt;p&gt;In Week 4, I focused on learning Jenkins and CI/CD fundamentals and applying them to an already Dockerized application instead of creating something new from scratch. This helped me understand how CI/CD is actually introduced in real-world projects.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why Jenkins?&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Manually running Docker commands works when learning containers, but it doesn’t scale.&lt;/li&gt;
&lt;li&gt;Real systems rely on automation, consistency, and repeatability.&lt;/li&gt;
&lt;li&gt;Jenkins acts as the bridge between:&lt;/li&gt;
&lt;li&gt;Source code changes&lt;/li&gt;
&lt;li&gt;Automated builds&lt;/li&gt;
&lt;li&gt;Deployment workflows&lt;/li&gt;
&lt;li&gt;This week was about understanding how Jenkins fits into DevOps pipelines, not just how to click buttons in the UI.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;What I Learned&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;During this week, I explored Jenkins from fundamentals to more advanced concepts:&lt;/li&gt;
&lt;li&gt;Jenkins architecture and CI/CD concepts&lt;/li&gt;
&lt;li&gt;Jenkins setup and installation&lt;/li&gt;
&lt;li&gt;Jenkins UI, jobs, and freestyle projects&lt;/li&gt;
&lt;li&gt;Declarative pipelines and Webhooks &lt;/li&gt;
&lt;li&gt;Jenkins agents and multi-node architecture&lt;/li&gt;
&lt;li&gt;Shared libraries and their real-world use cases&lt;/li&gt;
&lt;li&gt;Role-based user management in Jenkins&lt;/li&gt;
&lt;li&gt;Email notifications on pipeline success and failure&lt;/li&gt;
&lt;li&gt;Rather than memorizing features, I focused on why each component exists and when it is used.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Project Overview&lt;/strong&gt;&lt;br&gt;
To apply these concepts, I integrated Jenkins with my existing three-tier MERN stack application, which is managed using Docker Compose.&lt;br&gt;
The goal was simple:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Automate build and deployment without changing application code.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;CI/CD Flow Implemented&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;The pipeline follows this workflow:&lt;/li&gt;
&lt;li&gt;GitHub → Jenkins Pipeline → Docker Compose → Deployment → Verification&lt;/li&gt;
&lt;li&gt;Jenkins Pipeline Stages&lt;/li&gt;
&lt;li&gt;Checkout Source Code&lt;/li&gt;
&lt;li&gt;Jenkins pulls the latest code from GitHub.&lt;/li&gt;
&lt;li&gt;Deploy Using Docker Compose&lt;/li&gt;
&lt;li&gt;Stops running containers (if any)&lt;/li&gt;
&lt;li&gt;Builds Docker images&lt;/li&gt;
&lt;li&gt;Starts services using Docker Compose&lt;/li&gt;
&lt;li&gt;Verify Deployment&lt;/li&gt;
&lt;li&gt;Displays running containers to ensure successful deployment.&lt;/li&gt;
&lt;li&gt;Email Notifications&lt;/li&gt;
&lt;li&gt;Sends email alerts on pipeline success or failure.&lt;/li&gt;
&lt;li&gt;All stages are defined using a Declarative Jenkinsfile, making the pipeline version-controlled and reproducible.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Key Takeaways&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;CI/CD is more about process and reliability than tools&lt;/li&gt;
&lt;li&gt;Jenkins pipelines scale far better than manual jobs&lt;/li&gt;
&lt;li&gt;Declarative pipelines improve readability and maintainability&lt;/li&gt;
&lt;li&gt;CI/CD can be integrated into existing systems without modifying application code&lt;/li&gt;
&lt;li&gt;Automation reduces human error and speeds up deployments&lt;/li&gt;
&lt;li&gt;This project helped me move from “running commands manually” to “thinking in pipelines”.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Tech Stack Used&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Jenkins&lt;/li&gt;
&lt;li&gt;Docker&lt;/li&gt;
&lt;li&gt;Docker Compose&lt;/li&gt;
&lt;li&gt;GitHub&lt;/li&gt;
&lt;li&gt;Linux&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Repository&lt;/strong&gt;&lt;br&gt;
GitHub: &lt;a href="https://github.com/snehatomar1205/DevOps" rel="noopener noreferrer"&gt;https://github.com/snehatomar1205/DevOps&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What’s Next?&lt;/strong&gt;&lt;br&gt;
My next focus will be on:&lt;br&gt;
YAML fundamentals&lt;br&gt;
Ansible for configuration management and automation&lt;br&gt;
This will help me move further toward infrastructure automation and scalable deployments.&lt;/p&gt;

</description>
      <category>automation</category>
      <category>cicd</category>
      <category>devops</category>
      <category>docker</category>
    </item>
    <item>
      <title>Learning Docker by Building a Three-Tier MERN Application</title>
      <dc:creator>Sneha Tomar</dc:creator>
      <pubDate>Thu, 08 Jan 2026 04:22:43 +0000</pubDate>
      <link>https://dev.to/sneha_tomar_23/learning-docker-by-building-a-three-tier-mern-application-24c3</link>
      <guid>https://dev.to/sneha_tomar_23/learning-docker-by-building-a-three-tier-mern-application-24c3</guid>
      <description>&lt;p&gt;This week, I focused on learning Docker fundamentals as part of my DevOps learning journey.&lt;/p&gt;

&lt;p&gt;Instead of only memorizing commands or following tutorials blindly, I wanted to understand how Docker is actually used in real projects. So I decided to build something small, practical, and close to real-world architecture.&lt;/p&gt;

&lt;p&gt;Why Docker?&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Before Docker, running an application meant:&lt;/li&gt;
&lt;li&gt;Installing dependencies manually&lt;/li&gt;
&lt;li&gt;Dealing with environment mismatches&lt;/li&gt;
&lt;li&gt;Hearing the classic “it works on my machine” problem&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Docker solves this by packaging applications and their dependencies into containers, making them portable, consistent, and repeatable.&lt;/p&gt;

&lt;p&gt;What I Built&lt;br&gt;
To apply what I learned, I built a three-tier MERN stack application using Docker.&lt;/p&gt;

&lt;p&gt;The application is structured as:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Frontend: React-style frontend served via Nginx&lt;/li&gt;
&lt;li&gt;Backend: Node.js + Express API&lt;/li&gt;
&lt;li&gt;Database: MongoDB&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Each component runs in its own Docker container, and all services communicate through a shared Docker network.&lt;/p&gt;

&lt;p&gt;The entire application can be started using a single command:&lt;br&gt;
&lt;strong&gt;- docker compose up --build&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Docker Concepts I Practiced&lt;br&gt;
While building this project, I worked with the following Docker concepts:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. Docker Images &amp;amp; Containers&lt;/strong&gt;&lt;br&gt;
I learned how images are built from Dockerfiles and how containers are created from those images.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Dockerfiles&lt;/strong&gt;&lt;br&gt;
I wrote Dockerfiles for both frontend and backend services to define how each application should be built and run.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Multi-Stage Docker Builds&lt;/strong&gt;&lt;br&gt;
To optimize image size, I used multi-stage builds so that build-time dependencies don’t end up in the final production image.&lt;br&gt;
This helped me understand how production-ready Docker images are created.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;4. Docker Networking&lt;/strong&gt;&lt;br&gt;
All services run on a custom Docker network, allowing containers to communicate with each other using service names instead of IP addresses.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;5. Docker Volumes&lt;/strong&gt;&lt;br&gt;
MongoDB uses a Docker volume to persist data, ensuring the database data is not lost when containers restart.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;6. Docker Compose&lt;/strong&gt;&lt;br&gt;
Docker Compose ties everything together by defining all services, networks, and volumes in a single file.&lt;/p&gt;

&lt;p&gt;What I Learned&lt;br&gt;
Some key takeaways from this project:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Docker becomes much clearer when you build something end-to-end&lt;/li&gt;
&lt;li&gt;Multi-container applications are easier to manage with Docker Compose&lt;/li&gt;
&lt;li&gt;Volumes are critical for data that should survive container restarts&lt;/li&gt;
&lt;li&gt;Docker is less about commands and more about reproducible environments&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Why This Project Matters&lt;br&gt;
This project is not meant to be production-scale or overly complex.&lt;br&gt;
Its purpose is to serve as a proof of work — showing that I understand Docker fundamentals by applying them in a realistic setup.&lt;/p&gt;

&lt;p&gt;Repository&lt;br&gt;
GitHub Repository:&lt;a href="https://github.com/snehatomar1205/DevOps" rel="noopener noreferrer"&gt;https://github.com/snehatomar1205/DevOps&lt;/a&gt;&lt;/p&gt;

</description>
      <category>docker</category>
      <category>javascript</category>
      <category>tutorial</category>
      <category>webdev</category>
    </item>
    <item>
      <title>Learning Shell Scripting Through Real Automation Projects</title>
      <dc:creator>Sneha Tomar</dc:creator>
      <pubDate>Thu, 01 Jan 2026 05:02:46 +0000</pubDate>
      <link>https://dev.to/sneha_tomar_23/learning-shell-scripting-through-real-automation-projects-4hh0</link>
      <guid>https://dev.to/sneha_tomar_23/learning-shell-scripting-through-real-automation-projects-4hh0</guid>
      <description>&lt;p&gt;This week, I focused on learning Bash shell scripting by building real Linux automation scripts instead of just studying commands.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What I covered:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Linux shell &amp;amp; shebang&lt;/li&gt;
&lt;li&gt;Variables, arrays, strings&lt;/li&gt;
&lt;li&gt;User input &amp;amp; arithmetic&lt;/li&gt;
&lt;li&gt;Conditionals, loops, functions&lt;/li&gt;
&lt;li&gt;Arguments &amp;amp; redirection&lt;/li&gt;
&lt;li&gt;Error handling and logging&lt;/li&gt;
&lt;li&gt;Automation using At &amp;amp; cron&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Mini Projects Built:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;RAM Monitoring Script – checks free memory with threshold alerts&lt;/li&gt;
&lt;li&gt;Disk Usage Monitoring – monitors disk space with alert logic&lt;/li&gt;
&lt;li&gt;Log Archiving Script – compresses and archives system logs&lt;/li&gt;
&lt;li&gt;User Management Script – create, delete, and list users&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;GitHub: &lt;a href="https://github.com/snehatomar1205/DevOps" rel="noopener noreferrer"&gt;https://github.com/snehatomar1205/DevOps&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This hands-on approach helped me understand how shell scripting is used in system administration and automation.&lt;/p&gt;

</description>
      <category>bash</category>
      <category>devops</category>
      <category>linux</category>
      <category>automation</category>
    </item>
    <item>
      <title>What I Learned in My First Week of Linux (DevOps Journey)</title>
      <dc:creator>Sneha Tomar</dc:creator>
      <pubDate>Thu, 25 Dec 2025 03:26:28 +0000</pubDate>
      <link>https://dev.to/sneha_tomar_23/what-i-learned-in-my-first-week-of-linux-devops-journey-3fhb</link>
      <guid>https://dev.to/sneha_tomar_23/what-i-learned-in-my-first-week-of-linux-devops-journey-3fhb</guid>
      <description>&lt;p&gt;Linux is often recommended as a foundational skill for DevOps, but its real value becomes clear only through hands-on practice. This week, I focused on building a strong understanding of Linux fundamentals by working directly in the terminal rather than passively consuming tutorials.&lt;/p&gt;

&lt;p&gt;During this week, I practiced and explored the following core Linux concepts:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;File and directory management&lt;/li&gt;
&lt;li&gt;User, group, and permission handling&lt;/li&gt;
&lt;li&gt;Disk usage analysis and process monitoring&lt;/li&gt;
&lt;li&gt;Networking fundamentals&lt;/li&gt;
&lt;li&gt;File compression, backups, and transfers&lt;/li&gt;
&lt;li&gt;Text processing using tools such as grep, sed, and awk&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Working with these commands helped me understand how Linux systems behave in real environments and how administrators interact with servers on a daily basis.&lt;/p&gt;

&lt;p&gt;Linux is not about memorizing commands. It is about understanding system behavior, permissions, and processes, and being comfortable navigating and troubleshooting through the terminal.&lt;/p&gt;

&lt;p&gt;I documented all commands and concepts I practiced in a structured GitHub repository to ensure reproducibility and accountability.&lt;br&gt;
GitHub:(&lt;a href="https://github.com/snehatomar1205/DevOps" rel="noopener noreferrer"&gt;https://github.com/snehatomar1205/DevOps&lt;/a&gt;)&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What’s Next&lt;/strong&gt;&lt;br&gt;
In the coming week, I will move into shell scripting and begin combining these fundamentals into small automation workflows.&lt;/p&gt;

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