Docker Project for DevOps EngineersDockerfile A Dockerfile is a text file that contains a set of instructions for building a Docker image. It serves as a blueprint for creating a reproducible and portable containerized application environment. In a Dockerfile, you define a series of s...Jun 20, 2023·5 min read
Linux and GitHub-Cheat Sheetday12 of #90daysofdevops Linux Commands ls: List files and directories. cd [directory]: Change directory. pwd: Print working directory. mkdir [directory]: Create a directory. rm [file]: Remove a file. rm -r [directory]: Remove a directory and i...Jun 9, 2023·5 min read
Advance Git & GitHub for DevOps Engineers: Part-2day11 of #90daysofdevops Git Stash Git stash is a command that allows you to save your current working directory and index in a temporary location, so that you can return to it later. This is useful if you want to start working on something new, but ...Jun 8, 2023·4 min read
Advance Git & GitHub for DevOps Engineersday10 of 90daysofdevops Git Branching Git branching is a powerful feature of the Git version control system that allows you to create separate lines of development within a project. It enables multiple people to work on different aspects of a project...Jun 7, 2023·5 min read