Skip to content

Instantly share code, notes, and snippets.

@adis-me
Created April 14, 2025 19:21
Show Gist options
  • Select an option

  • Save adis-me/9175e921a2c2190cf1f01b0023265961 to your computer and use it in GitHub Desktop.

Select an option

Save adis-me/9175e921a2c2190cf1f01b0023265961 to your computer and use it in GitHub Desktop.
Run Sonar scanner on a local project
## 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