Docker

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...

Simple Jenkins Declarative Pipeline to Push Docker Image To Docker Hub

Docker hub is one of the many popular repositories for storing docker images.In this post we will cover how to create a docker image using Dockerfile with Jenkins pipeline. Once we have built the image, we will login to Docker Hub and push the image to our private repo in...

How to Build A Docker Image and Publish To Docker Hub with Github Actions

In this post we will understand how to create a docker image and upload it to Docker Hub using Github actions.  Workflow To understand the basics of how to work with Github Actions workflow yaml (.yml) file, you can read through the post: GitHub Actions workflow to enable a simple...