MNManish Negiinjourneytodevops.hashnode.dev·Oct 8, 2023 · 10 min readJenkins Interview Questions & AnswersDifference between CI, Continuous Delivery and Contnious Deployment? Continuous Integration: The process of automatically integrating the code changes into shared repository (Git), building the image from the code (Docker) , testing (sonarqube) is k...00
MNManish Negiinjourneytodevops.hashnode.dev·Oct 3, 2023 · 12 min readDocker Interview Questions with AnswersDifference between Virtual machine Vs Docker Docker and virtual machines (VMs) are both technologies used for virtualization, but they operate at different levels and serve different purposes. Here's a comparison between Docker and virtual machines...00
MNManish Negiinjourneytodevops.hashnode.dev·Sep 29, 2023 · 8 min read# Git and GitHub Interview Questions & AnswersDifference between Centralised and Distributed version control systems. CVCS: In CVCS, there is a central repo that stores the entire history and version of all projects and developers checkout copies of the code and commits changes back to the cen...00
MNManish Negiinjourneytodevops.hashnode.dev·Sep 26, 2023 · 8 min readShell-scripting Interview Questions & AnswersShell/Bash Scripting for DevOps. To create a shell script file touch first-shell-sript.sh Shell script always have .sh extension. To list the files ls It will shows all the files in the present directory. To list the files with more info...00
MNManish Negiinjourneytodevops.hashnode.dev·Sep 21, 2023 · 1 min readDeploying static website on Nginx web server using ansible playbook.Create playbook - name: Install nginx and serve static website hosts: prod become: yes tasks: - name: install nginx apt: name: nginx state: latest - name: start nginx service: name: nginx state: started enabled: yes - name...00