Created
April 14, 2025 19:21
-
-
Save adis-me/9175e921a2c2190cf1f01b0023265961 to your computer and use it in GitHub Desktop.
Run Sonar scanner on a local project
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## Pull container and run server | |
| ```shell | |
| docker pull sonarqube | |
| docker run -d --name sonarqube -p 9000:9000 -p 9092:9092 sonarqube | |
| # open http://localhost:9000 (login with admin/admin) | |
| Create project and scan via IntelliJ | |
| ``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment