What is Harbor VMware Harbor repository is an enterprise-class registry server that stores and distributes container images. Harbor allows you to store and manage images on-premise environment. Pre-requisite Docker: for docker installation, please refer to ‘Install Docker‘ Part in previous article. Install docker-composer Install and upgrade python-pip optional: set up pip source. if you have […]
Month: April 2020
CI/CD with Jenkins – Part 3: Install and Configure SonarQube
What is SonarQube SonarQube formerly known as Sonar, is an open source tool suit to measure and analyze to quality of source code. It is written by Java but is able to analyze code in 20 different programming languages. With SonarQube, developers can easily to check to ensure quality, reliability and maintainability over life-span of […]
CI/CD with Jenkins – Part 2: Install and Configure Gitlab
What is GitLab? GitLab is a system for managing Git repositories. It’s written in Ruby and allows you to deploy meaningful version control for your code easily. The core function is similar to GitHub and Bitbucket that provides remote access to the code repository. it provides two variant production Community Edition and Enterprise Edition. In this blog, we […]
CI/CD with Jenkins – Part 1: Install and Configure Jenkins
Setup a continuous integration process to build and test a Java web app with Jenkins Jenkins is an open-source self-hosted automation server. It is very popular amongst the DevOps engineers for implementing continuous integration and continuous delivery in the software development life cycle. Jenkins is written in Java and provides out of the box support […]
Install MySQL with Docker
I often need to install a certain version of MySQL to run some experiments or to test other software but need database support. In this article, I will look into how to install a MySQL server with Docker and some basic commands. This article is designed to get a test instance quickly and easily, please […]