How to start sonarqube using dockers ?

SonarQube is an open-source platform developed by SonarSource for continuous inspection of code quality to perform automatic reviews with static analysis of code to detect bugs, code smells, and security vulnerabilities on 20+ programming languages. SonarQube offers reports on duplicated code, coding standards, unit tests, code coverage, code complexity, comments, bugs, and security vulnerabilities.

If you have Docker installed, then its very easy to have a SonarQube instance running your machine below instructions.


docker pull sonarqube

docker run -d --name sonarqube_container -p 9000:9000 sonarqube

In your browser access http://localhost:9000

And login with default credentials as below

username = admin password = admin

Hope it helps.
Thank you.

Comments

Popular posts from this blog

grep: unknown device method

Uploading files to FTP/SFTP using CURL

How to find outgoing IP in Linux ?