Setup SonarQube on Ubuntu | How to Setup SonarQube using Docker Compose | Setup SonarQube on Ubuntu
https://www.coachdevops.com/2020/11/install-sonarqube-using-docker-install.html
SonarQube is static code analyis tool. It can be installed quickly using Docker with less manual steps.
How to setup Sonarqube using Docker and Docker compose?
Pre-requistes:
Ubuntu EC2 up and running with at least t2.small
Port 9000 is opened in security firewall rule
Install Docker
sudo apt-get install docker -y
Install Docker-Compose
sudo apt-get install docker-compose -y
ubuntu