Day 18: Docker for DevOps EngineersDocker Compose: Docker Compose is a tool that was developed to help define and share multi-container applications. With Compose, we can create a YAML file to define the services and with a single command, can spin everything up or tear it all down....Jun 26, 2023·3 min read
Day:13 Basic Python and Different Data Types in Python :Part-1What is Python? Python is a computer programming language often used to build websites and software, automate tasks, and conduct data analysis. Python is a general-purpose language, meaning it can be used to create a variety of different programs and...Jun 18, 2023·6 min read
Day:11 Advance Git & GitHub for DevOps Engineers: Part-2Git Stash: Git Stash is a command that allows you to temporarily save changes you have made in your working directory, without committing them. This is useful when you need to switch to a different branch to work on something else, but you don't want...Jun 17, 2023·3 min read
Day:12 Linux and GitHub-Cheat Sheet#Linux Cheat Sheet Linux Basic Commands : ls : Lists all files and directories in the present working directory. ls -la : To check hidden files. cd : It is used to change current working directory. cd .. : To move one directory up. cd- : To move...Jun 15, 2023·5 min read
Day:10 Advance Git & GitHub for DevOps EngineersGit Branching: Git branching is a fundamental feature of the Git version control system that allows for parallel development and organization of code changes. Git repositories typically start with a main branch, often named "master" or "main". It rep...Jun 14, 2023·3 min read
Day :09 Deep Dive in Git & GitHub for DevOps EngineersWhat is Git and why is it important? Git is a DevOps tool used for source code management. It is a free and open-source version control system used to handle small to very large projects efficiently. Git is used to track the changes in the source co...Jun 5, 2023·3 min read
Day:08 Basic Git & GitHub for DevOps EngineersWhat is Git? Git is a version control system that allows you to track changes to files and coordinate work on those files among multiple people. It is commonly used for software development, but it can be used to track changes to any set of files. Wh...Jun 4, 2023·4 min read