Deepesh Guptadeepeshmlgupta.hashnode.dev·Oct 29, 2024Jenkins Declarative Pipeline with DockerIn today's world of continuous integration and continuous delivery (CI/CD), automation is the backbone of efficient software development. This is where Jenkins Pipelines come in handy. They allow teams to automate their processes, from building and t...Jenkins
Deepesh Guptadeepeshmlgupta.hashnode.dev·Oct 18, 2024Jenkins Freestyle Project for DevOps EngineersUnderstanding a Build Job? A Jenkins build job defines the configuration required to automate specific tasks within the application build process. These tasks typically include: Gathering dependencies Compiling and archiving code Transforming sour...Docker
Deepesh Guptadeepeshmlgupta.hashnode.dev·Oct 15, 2024Setting Up Jenkins & Creating Your First Pipeline😃Today, we’ll be focusing on installing and configuring Jenkins on our systems. Additionally, we’ll take on an exciting challenge—creating a freestyle pipeline to apply what we've learned. Ready to enhance your automation skills? Let’s get started! 💻...Jenkins
Deepesh Guptadeepeshmlgupta.hashnode.dev·Oct 15, 2024Getting Started With JenkinsIntroduction to Jenkins! 1. What is Jenkins? Jenkins is an open source continuous integration-continuous delivery and deployment (CI/CD) automation software DevOps tool written in the Java programming language. It is used to implement CI/CD workflow...Jenkins
Deepesh Guptadeepeshmlgupta.hashnode.dev·Oct 15, 2024Docker Interview QuestionsFinally!! 🎉 You have completed ✅ the Docker hands-on sessions, and I hope you have learned something valuable from it. 🙌 Docker being a crucial topic for DevOps Engineer interviews, especially for freshers. Here are some essential questions to help...Docker
Deepesh Guptadeepeshmlgupta.hashnode.dev·Sep 25, 2024Docker Project: Making a Dockerfile for a Django-Notes App on AWSIn this blog, we will learn how to containerize a Django Noters Application using Docker and deploy it on Amazon Web Services (AWS). This makes it easy to run your app anywhere and scale it as needed. Let's get started! 🧰 What You’ll Need Before we...2 likes·60 readsDevops
Deepesh Guptadeepeshmlgupta.hashnode.dev·Sep 25, 2024Docker Project on LocalHost for DevOps EngineersIn this blog, we will show you how to create a basic Docker project using localhost. 🔍 What is a Docker File? A Docker file is a simple text file that contains a series of instructions (steps) on how to build a Docker image. Think of it as a recipe...Devops
Deepesh Guptadeepeshmlgupta.hashnode.dev·Sep 10, 2024Docker Installation On AWS and Essential CommandsDocker makes it easy to develop and run applications in isolated environments. In this blog, we'll show you how to install Docker on an Ubuntu EC2 instance in AWS. By the end, you'll have Docker up and running on your EC2 instance, ready to use. 1. S...27 readsDevops
Deepesh Guptadeepeshmlgupta.hashnode.dev·Sep 9, 202415 AWS Tools Every DevOps Engineer Should Know🚀 DevOps Adventure: 15 AWS Services Every Engineer Should Know! 🚀 AWS (Amazon Web Services) is a key player in today’s cloud computing world, and knowing its services is essential for every DevOps engineer. This blog covered a thorough look at the ...34 readsDevops
Deepesh Guptadeepeshmlgupta.hashnode.dev·May 14, 2024Docker CommandsDocker run command The docker run command is used to run the Docker container using Docker images. Example: docker run hello-world Docker inspect command docker inspect command gives us all the details about the docker container. In simple terms,...Devops