From d54b711f6b012b2b40c97d2ba44a9c558651f923 Mon Sep 17 00:00:00 2001 From: Evgeny Mandrikov Date: Wed, 13 Apr 2016 10:28:32 +0200 Subject: [PATCH] Update SonarQube documentation --- sonarqube/content.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sonarqube/content.md b/sonarqube/content.md index 867981c23..7728c47c6 100644 --- a/sonarqube/content.md +++ b/sonarqube/content.md @@ -13,7 +13,7 @@ SonarQube is an open source platform for continuous inspection of code quality. The server is started this way: ```console -$ docker run -d --name sonarqube -p 9000:9000 -p 9092:9092 sonarqube:5.1 +$ docker run -d --name sonarqube -p 9000:9000 -p 9092:9092 sonarqube ``` To analyse a project: @@ -38,7 +38,7 @@ $ docker run -d --name sonarqube \ -e SONARQUBE_JDBC_USERNAME=sonar \ -e SONARQUBE_JDBC_PASSWORD=sonar \ -e SONARQUBE_JDBC_URL=jdbc:postgresql://localhost/sonar \ - sonarqube:5.1 + sonarqube ``` More recipes can be found [here](https://github.com/SonarSource/docker-sonarqube/blob/master/recipes.md).