Day 20 Task : Docker commands Cheat-SheetDocker overview: Docker is a set of PaaS that delivers applications in the form of a container. The software that hosts the containers is called docker enginer. Docker is a tool that is used to automate the deployment of applications in lightweight c...Jul 31, 2023·2 min read
Python Data Types and Data Structures for DevOpsData Types: Data types are the classification or categorization of data items. It represents the kind of value that tells what operations can be performed on a particular data. Since everything is an object in Python programming, data types are class...Jul 15, 2023·3 min read
Getting Started with PythonPython, what is it? Python is a dynamically typed, general-purpose programming language that supports an object-oriented programming approach as well as a functional programming approach. Python consists of vast libraries and various frameworks lik...Jul 14, 2023·2 min read
Day 12 Task : Cheat Sheet Of Linux and Git HubBasics Linux commands · pwd — Print Working Directory, It will show the path of the current working directory. · man — Used to display the user manual of any command that we can run on the terminal. · clear — Clear the terminal screen. · history — Di...Jul 13, 2023·4 min read
Advance Git & GitHub for DevOps Engineers: Part-2Git Stash:- git stash temporarily shelves (or stashes) changes you've made to your working copy so you can work on something else, and then come back and re-apply them later on. Stashing is handy if you need to quickly switch context and work on some...Jul 12, 2023·3 min read
Day 10 Task: Advanced Git & GitHub for DevOps EngineersGit Branching Branching means you diverge from the main line of development and continue to do work without messing with that main line. The master branch is the stable branch. Must be always in a releasable state. Feature branches are created from...Jul 10, 2023·3 min read
Deep Dive in Git & GitHub for DevOps Engineers.1.What 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 changes in the source code,...Jul 9, 2023·3 min read