Docker VolumnVolume is simply a directory inside our container. Firstly, we have to declare this directory as a volume and then share volume. Even if we stop the container we can still access Volume. Volumn will be created in one container. You can declare a ...Aug 12, 2023·2 min read
Docker Commands for Fresherssudo apt update # to update your ubuntu system sudo apt install docker.io # to install docker setup on your ubuntu system systemctl status docker # command to check status of docker engine systemctl docker start # command to start docker services doc...Aug 11, 2023·2 min read
What is Docker?Today we are going discuss about what is docker. But before that let's discuss what are Virtual Machines and also let's discuss what is containerisation. VMware In the initial days one application used to run on one server. This problem was solved by...Aug 8, 2023·4 min read
Git Merge v/s Git RebaseGit merge 'Merge', the word spells out that one has to combine two different things. Like rivers merge into one big river. In git merge is used to merge a temporary branch to the main/master branch. Git Merge is used to combine changes from one bran...Aug 2, 2023·4 min read
T0 Master Git: Branching, Reverting, Resetting, Squashing, Stashing, Conflict Resolution, and Cherry-PickingThe diagram above visualises a repository with two isolated lines of development for a little feature and one for a longer-running feature. By developing their branches it is not only possible to work on both of them in parallel, but it also keeps th...Jul 31, 2023·4 min read