DevOps

SonarQube installation on docker container with docker-compose

SonarQube is being widely used to manage code quality and code analysis. It is an open source tool that 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 LTS edition of...

How to integrate a GitHub repository with a Jenkins pipeline

It is a common requirement in any project to fetch the code from source control and run continuous integration and delivery cycle for building, reviewing, testing, packaging and deploying. Jenkins is one of the most popular orchestration tool used for continuous integration and delivery. GitHub is also a popular tool...

Generate fine grained personal access token in GitHub

What is a Personal Access Token GitHub is a tool used by many projects to store and version control their code. So, as an initial step during code integration, it is required to fetch the code from version control i.e. GitHub in our case. This can be done by using...