Why need containers and Kubernetes - IKubernetes also known as K8s was built by Google based on their experience running containers in production. It is now an open-source project and is arguably one of the best and most popular container orchestration technologies out there. In this pos...Jun 29, 2023·4 min read
Docker : Hub, images, Containers and more | 2As in the previous blog, we came to know about Docker and its role in DevOps and why it's used and how it's used with the help of tables and diagrams. In this section, we will be visiting some of the topics from the previous blog as well as discussin...Feb 9, 2023·5 min read
Docker : What, why and How? | 1Docker is a software platform that allows you to build, test, and deploy applications quickly. Docker packages software into standardized units called containers that have everything the software needs to run including libraries, system tools, code, ...Feb 6, 2023·4 min read
Git : A basic understanding for every Dev - Part IVGit Rebasing In this section, we will take a look at git rebasing. Git merge We can merge the master branch into our own branch by the git merge command. This creates a new merge commit, to merge these changes into our own branch. Another way to ac...Feb 4, 2023·5 min read
Git : A basic understanding for every Dev - Part IIIIn this section, we will take a look at initializing remote repositories Initialize Remote Repositories We can push code to the remote repositories that are hosted somewhere else and get this code on our local machines by pulling this information. T...Feb 4, 2023·3 min read
Git : A basic understanding for every Dev - Part IIIn this section, we will take a look at git branches Branches Keep the project versioned using the branch A branch is basically a pointer to the last commit If you are working on a feature, you might work on a feature branch (eg. feature/signup), ...Feb 2, 2023·1 min read
Git : A basic understanding for every DEV - Part IGit is a Distributed Version Control System and it is a kind of content tracker, it stores all our code changes. Distributed means it has a remote repository which is stored in a server and a local repository which is stored on the computer of every ...Feb 2, 2023·3 min read