Software Engineering, Automation and DevOps Solutions
SonarQube can be used as a stand alone code analysis and quality management tool. It can also be integrated with the commonly used DevOps orchestration tools like Jenkins, GitHub etc. In this post, we will learn how to install SonarQube on Windows OS. Then we will run SonarQube from windows...
In this post we will discuss the steps required to create a docker image for a simple flask application. Once the docker image is created, we will understand the steps required to push the image to Docker Hub. Project Summary Let us go through the steps that we will follow....
In this post we will understand how -i (interactive) and -t (terminal) options work with docker commands such as docker run and docker exec. To understand these options, we will create a simple container with docker run and understanding how these flags are used as we move ahead. Create a...
This post provides an overview of what we can achieve by using Kubernetes by providing simple explanations with examples. It is a good starting point for anyone beginning the journey towards this widely used tool for managing and scaling containers. What is container orchestration Kubernetes is commonly described as a...
SonarQube is an open source tool that is being widely used to manage code quality. SonarQube performs code inspection to detect issues in the code. In this post we will learn how to install SonarQube on a docker container. We will install community version of SonarQube with LTS edition. We will...