Day 28 Task: Jenkins AgentsJenkins Master (Server) Jenkins’s server or master node holds all key configurations. The Jenkins master server is like a control server that orchestrates all the workflow defined in the pipelines. For example, scheduling a job, monitoring the jobs, ...Sep 8, 2023·3 min read
Day 22 : Getting Started with JenkinsWhat is Jenkins? -Jenkins is an open-source automation tool written in Java programming language that allows continuous integration. -Jenkins builds and tests our software projects, which continuously makes it easier for developers to integrate chang...Aug 17, 2023·2 min read
Day 21 Task: Docker Important interview Questions.Questions: What is the Difference between an Image, Container and Engine? Docker images are read-only templates containing instructions for creating a container. A Docker image creates containers to run on the Docker platform. Think of an image as a ...Aug 16, 2023·11 min read
Day 20: Docker Cheat SheetDocker Images List all available Docker images on your system: $docker images Lists images: $docker image ls Download a Docker image from a repository: $docker pull <image-name> Push an image to a registry: $docker push <image-name> Remove a Docker i...Aug 3, 2023·3 min read
Day 19 Task: Docker for DevOps EngineersDocker-Volume -Docker volume is simply a directory inside our container. -First, we have to declare this directory as a volume and then share the volume. -Even if we stop the container, still we can access volume. -The volume will be created in one ...Jul 28, 2023·3 min read
Day 18:Docker for DevOps EngineersDocker Compose Docker Compose is used to run multiple containers as a single service. For example, suppose you had an application that required NGNIX and MySQL, you could create one file which would start both containers as a service without the need...Jul 24, 2023·3 min read
Day 17 Task: Docker Project for DevOps Engineers.Dockerfile: 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 Docker...Jul 22, 2023·3 min read