Day 18 - Docker Compose for DevOps🔗 Docker-Compose Docker Compose is a tool for defining and running multi-container Docker applications. It allows you to define all the services, networks, and volumes required for your application in a single, easy-to-read YAML file. With Docker Co...Sep 4, 2023·6 min read
Day 13 - Basics of Python✨ What is Python? Python is a high-level, interpreted programming language known for its simplicity, readability, and versatility. It was created by Guido van Rossum and was first released in 1991. Python emphasizes code readability, making it easier...Aug 10, 2023·4 min read
Day 12 - Cheatsheet for Linux and Git🔖 Linux Commands To create an empty file touch <filename> To create multiple files touch file{1..5}.txt List all the files including hidden files also ls -la create a nested directory mkdir -p a/b/c/d/e To view a file cat file.txt To...Aug 8, 2023·3 min read
Day 11 - Advance Git & GitHub: Part-2📍Git 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 wa...Aug 7, 2023·3 min read
Day 10 - 90 DaysOfDevOps - Advanced Git & GitHub🔖 What is Git Branching? Branching is the feature of the Git Version Control System, which allows developers to create a separate line from which they can work independently and then add their work to the main branch. Branching enables multiple team...Aug 2, 2023·4 min read
Day 9 - 90 DaysOfDevOps - Deep Dive in Git & GitHub✨ What is Git and why is it important? Git is a distributed version control system designed to manage and track changes to source code and other text-based files over time. It was created by Linus Torvalds in 2005 and has become one of the most widel...Jul 27, 2023·7 min read
Day 8 - 90 DaysOfDevOps - Basics of Git & GitHub🔴 What is Git? Git is a distributed version control system (VCS) that helps developers track changes in their source code and collaborate with others on software projects. It was created by Linus Torvalds in 2005 to manage the development of the Lin...Jul 26, 2023·9 min read