Day25 of #90daysofdevops | Complete Jenkins CI/CD Project - Continued with DocumentationAug 28, 2023·1 min read
Day27 of #90daysofdevops | Jenkins Declarative Pipeline with DockerTask 1: Create a docker-integrated Jenkins declarative pipeline. First, add Jenkins to the docker group so that Jenkins can integrate with docker. Create a new job of type "Pipeline" and add the URL of the GitHub project that you want to use. Use t...Sep 11, 2023·1 min read
Day22 of #90daysofdevops | Getting Started with Jenkins 😃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 workflows, called pipelines. Jenkin...Aug 5, 2023·3 min read
Day21 of #90daysofdevops | Docker Important interview Questions & Answers1.What is the difference between an Image, Container and Engine? Image: A docker image is a read-only package containing necessary dependencies and commands that can be executed to run an application. It is the prerequisite for creating a container. ...Aug 4, 2023·8 min read
Day20 of #90daysofdevops | Docker cheat sheetSo far we have learned everything about docker in previous blogs where we used several commands. Today's blog is the one-stop solution for all the commands related to docker. Docker Cheat Sheet Basics: Pull an image from Docker Hub: docker pull im...Aug 3, 2023·2 min read
Day19 of #90days0fdevops | Docker Volume & NetworkDocker-Volume Docker allows you to create something called volumes. Volumes are like separate storage areas that can be accessed by containers. They allow you to store data, like a database, outside the container, so it doesn't get deleted when the c...Aug 2, 2023·2 min read
Day18 of #90daysofdevops | Docker compose & YAMLDocker Compose "Docker Compose is a tool that allows you to define and manage multi-container Docker applications. It uses a simple YAML file to configure the services, networks, and volumes required for your application, making it easy to deploy and...Aug 1, 2023·5 min read
Day17 of #90daysofdevops | Dockerfile and creating containerDockerfile Docker is a tool that makes it easy to run applications in containers. Containers are like small packages that hold everything an application needs to run. To create these containers, developers use something called a Dockerfile. A Dockerf...Jul 31, 2023·2 min read