Docker images and docker-compose recipes for out-of-the-box SonarQube 6.7 LTS and SonarQube 7.4 instance with support for Scala, Scoverage (code coverage metrics) and Scalastyle + Scapegoat (static code analysis). 😎
To start SonarQube in a daemon mode, simply run:
docker-compose up -dor the following for the LTS version:
docker-compose -f docker-compose-lts.yml up -dOnce docker pulls all the required images and starts up the containers, the application should become available on http://localhost. The default SonarQube login details for the Administrator account are admin:admin.
You can also use a standalone docker image which contains SonarQube server with bundled sonar-scala plugin, mwizner/sonarqube-scala-plugins:3.3.0-full and mwizner/sonarqube-scala-plugins:2.10.0-full for the LTS version.
To start the container issue the following command:
docker run -d \ --name sonarqube-scala-plugins-full \ -p 80:9000 \ -e SONARQUBE_JDBC_USERNAME=sonar \ -e SONARQUBE_JDBC_PASSWORD=sonar \ -e SONARQUBE_JDBC_URL=jdbc:postgresql://localhost/sonar \ mwizner/sonarqube-scala-plugins:3.3.0-fullPlease note that if you don't specify the SONARQUBE_JDBC_URL variable, SonarQube will use an embedded H2 database, which is not recommended in production, but if you don't have access to an existing database or you just want to try the image, you can use the following command:
docker run -d \ --name sonarqube-scala-plugins-full \ -p 80:9000 \ mwizner/sonarqube-scala-plugins:3.3.0-full- SonarQube 6.7 LTS / SonarQube 7.4
- PostgreSQL 10
- mwz/sonar-scala - provides support for scalastyle, scoverage and scapegoat
- versions before
2.7.0used arthepsy/sonar-scala-extra for scapegoat support
| Version | SonarQube | sonar-scala | sonar-scala-extra |
|---|---|---|---|
| 3.3.0 | 7.4 (documentation)(changelog) | 7.3.0 | |
| 3.2.1 | 7.4 (documentation)(changelog) | 7.2.0 | |
| 3.2.0 | 7.4 (documentation)(changelog) | 7.2.0 | |
| 3.1.0 | 7.4 (documentation)(changelog) | 7.1.0 | |
| 3.0.0 | 7.3 (documentation)(changelog) | 7.0.0 | |
| 2.10.0 | 6.7.6 LTS (documentation)(changelog) | 6.7.0 | |
| 2.9.0 | 6.7.5 LTS (documentation)(changelog) | 6.6.0 | |
| 2.8.0 | 6.7.5 LTS (documentation)(changelog) | 6.5.1 | |
| 2.7.0 | 6.7.4 LTS (documentation)(changelog) | 6.5.0 | |
| 2.6.0 | 6.7.4 LTS (documentation)(changelog) | 6.4.0 | 1.3.0 |
| 2.5.0 | 6.7.3 LTS (documentation)(changelog) | 6.4.0 | 1.3.0 |
| 2.4.0 | 6.7.3 LTS (documentation)(changelog) | 6.3.0 | 1.3.0 |
| 2.3.0 | 6.7.3 LTS (documentation)(changelog) | 6.2.0 | 1.3.0 |
| 2.2.1 | 6.7.3 LTS (documentation)(changelog) | 6.1.0 | 1.3.0 |
| 2.2.0 | 6.7.2 LTS (documentation)(changelog) | 6.1.0 | 1.3.0 |
| 2.1.0 | 6.7.1 LTS (documentation)(changelog) | 6.0.0 | 1.3.0 |
Please note, that starting from version 2.7.0, the images no longer contain the sonar-scala-extra plugin as sonar-scala provides Scapegoat support from version 6.5.0 onwards.
sbt-sonar is an sbt plugin which provides a way to automate analysis of Scala projects with SonarQube.
- 3.3.0 - Upgraded sonar-scala to 7.3.0.
- 3.2.1 - Fixed file system permissions.
- 3.2.0 - Upgraded sonar-scala to 7.2.0.
- 3.1.0 - Upgraded sonar-scala to 7.1.0 & SonarQube to 7.4.
- 3.0.0 - Upgraded sonar-scala to 7.0.0 & SonarQube to 7.3.
- 2.10.0 - Upgraded sonar-scala to 6.7.0 & SonarQube to 6.7.6.
- 2.9.0 - Upgraded sonar-scala to 6.6.0.
- 2.8.0 - Upgraded sonar-scala to 6.5.1 & SonarQube to 6.7.5.
- 2.7.0 - Upgraded sonar-scala to 6.5.0, which brings support for scapegoat.
- 2.6.0 - Upgraded SonarQube to 6.7.4.
- 2.5.0 - Upgraded sonar-scala to 6.4.0.
- 2.4.0 - Upgraded sonar-scala to 6.3.0.
- 2.3.0 - Upgraded sonar-scala to 6.2.0.
- 2.2.1 - Upgraded SonarQube to 6.7.3 LTS.
- 2.2.0 - Upgraded sonar-scala to 6.1.0 & SonarQube to 6.7.2 LTS.
- 2.1.0 - Published docker image with Scala plugins to dockerhub mwizner/sonarqube-scala-plugins.
- 2.0.0 - SonarQube 6.7.1 LTS.
- 1.0.0 - SonarQube 5.6.7 LTS.
The project is licensed under the Apache License v2. See the LICENSE file for more details.