24.Complete Jenkins CI/CD Project (Day-24)Day 23 was all about Jenkins CI/CD, make sure you have done it and understood the concepts. As of today You will be doing one Project End to End and adding it to your resume :) As you have worked with Docker and Docker Compose, it will be good to us...May 10, 2023·2 min read
KubeWeek Day-1. Kubernetes Architecture, Components, Installation And ConfigurationApr 25, 2023·6 min read
20.Docker cheat sheet (Day-20)Run a new Container Start a new container from an Image #docker run IMAGE docker run nginx and assign it a name #docker run --name IMAGE NAME docker run --name web nginx and map a port #docker run -p HOSTPORT:CONTAINERPORT IMAGE docker run -p 8000:...Apr 20, 2023·3 min read
19.Docker Volume & Docker network for DevOps Engineers (Day-19)Docker-Volume Docker volumes are a way to manage persistent data in Docker containers. By default, when you create a Docker container, any data that is written to the container's filesystem is lost when the container is stopped or deleted. Docker vol...Apr 20, 2023·4 min read
18.Docker Compose & Advance Docker for DevOps Engineers (Day-18)What is Docker Compose? Docker Compose is a tool that allows developers to define and run multi-container Docker applications. It is used to create and manage multiple Docker containers at once, using a single YAML file to define the various containe...Apr 19, 2023·3 min read
17. Docker Project for DevOps Engineers (Day-17 , Project -1)What is Dockerfile ? A Dockerfile is a text file that contains a set of instructions that Docker uses to create a Docker image. It is essentially a recipe for building a Docker image that can be run as a container. A Dockerfile contains instructions ...Apr 14, 2023·3 min read
16.Docker for DevOps Engineers ( Day-16)What is Docker Docker is a platform and toolset that enables developers to easily build, package, and deploy applications in containers. Containers are lightweight, portable, and self-contained environments that contain all the necessary dependencies...Apr 11, 2023·5 min read
7.Understanding package manager and systemctl (Day-7)What is a package manager in Linux? A package manager in Linux is a software tool that automates the process of installing, upgrading, configuring, and removing software packages on a Linux-based operating system. A software package is a collection o...Apr 10, 2023·8 min read