mrtns blog

Logo

a real human being writing about infosec, coding and other stuff. maybe.

View My GitHub Profile

Start your SonarQube Server in a local docker container

21 Oct 2020 - mrtn

As I always have to search for that - I’ll take the liberty of saving me the hassle of googling it all the time.

docker pull sonarqube
docker run -d --name sonarqube -e SONAR_ES_BOOTSTRAP_CHECKS_DISABLE=true -p 9000:9000 sonarqube:latest

Then: Go to http://localhost:9000 and log in with admin:admin

That’s it.