Day 28 - Jenkins Master & AgentsJenkins Master (Server) Jenkins is an open-source automation server that helps automate various aspects of software development, including building, testing, and deploying applications. The term "Jenkins Master" or "Jenkins Server" refers to the cent...Nov 28, 2023·5 min read
Day 23 - Jenkins Freestyle Project for DevOps Engineers.Introduction : In the previous blog of Day 22, we learned about Jenkins, concepts of CICD, and how to install Jenkins. A Jenkins job is a fundamental concept within the Jenkins ecosystem. It represents a specific task or set of tasks that Jenkins wil...Oct 30, 2023·6 min read
Getting Started with Jenkins: #Day 22 TaskOverview of Jenkins:- Jenkins: Jenkins is a Java-based open-source automation platform(server) with plugins designed for continuous integration processes in an automated fashion. Jenkins used for what? -Jenkins is used to build and test your product ...Oct 28, 2023·3 min read
Docker Interview QuestionsWhat is the Difference between an Image, Container, and Engine? Ans: Docker Image: A blueprint that contains all the necessary libraries, dependencies, and code to run a service or an app. Docker Image is built from a configuration file called Dock...Oct 27, 2023·13 min read
Docker Cheat sheet for DevOps and Container Enthusiasts!TABLE OF CONTENTS Docker Commands Docker Compose Commands Docker Volumes Commands Docker Network CommandsOct 16, 2023·7 min read
Docker Volumes and Networking in ContainerizationDocker-Volume Docker volumes are a way to manage and persist data outside of a container. In the world of containers, where containers can be created and destroyed, having a way to store and share data beyond the container's lifecycle is important. V...Oct 11, 2023·7 min read
Diving into Docker Compose: Simplifying Multi-Container DeploymentsYAML: YAML (short for "YAML Ain't Markup Language" or sometimes "Yet Another Markup Language") is a human-readable data serialization format. It is often used for configuration files and data exchange between languages with different data structures....Oct 7, 2023·8 min read