Skip to content
This repository was archived by the owner on Jan 30, 2023. It is now read-only.

Commit cef3b00

Browse files
committed
Updated README.
1 parent e6ee241 commit cef3b00

File tree

2 files changed

+16
-10
lines changed

2 files changed

+16
-10
lines changed

README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ docker-compose up -d
1414

1515
Once docker pulls all the required images and starts up the containers, the application should become available on [http://localhost](http://localhost). The default SonarQube login details for the Administrator account are `admin:admin`.
1616

17-
You can also use a standalone docker image which contains SonarQube with bundled sonar-scala plugin [`mwizner/sonarqube-scala-plugins:3.1.0-full`](https://hub.docker.com/r/mwizner/sonarqube-scala-plugins).
17+
You can also use a standalone docker image which contains SonarQube with bundled sonar-scala plugin [`mwizner/sonarqube-scala-plugins:3.2.0-full`](https://hub.docker.com/r/mwizner/sonarqube-scala-plugins).
1818

1919
To start the container issue the following command:
2020
```bash
@@ -23,13 +23,13 @@ docker run -d --name sonarqube-scala-plugins-full \
2323
-e SONARQUBE_JDBC_USERNAME=sonar \
2424
-e SONARQUBE_JDBC_PASSWORD=sonar \
2525
-e SONARQUBE_JDBC_URL=jdbc:postgresql://localhost/sonar \
26-
mwizner/sonarqube-scala-plugins:3.1.0-full
26+
mwizner/sonarqube-scala-plugins:3.2.0-full
2727
```
2828
Please 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.
2929

3030

3131
## Dependencies
32-
* [SonarQube 6.7 LTS](https://hub.docker.com/_/sonarqube) / [SonarQube 7.4](https://hub.docker.com/r/mwizner/sonarqube/tags)
32+
* [SonarQube 6.7 LTS](https://hub.docker.com/_/sonarqube) / [SonarQube 7.4](https://hub.docker.com/_/sonarqube)
3333
* [PostgreSQL 10](https://hub.docker.com/_/postgres)
3434
* [mwz/sonar-scala](https://github.com/mwz/sonar-scala) - provides support for scalastyle, scoverage and scapegoat.
3535
* versions before `2.7.0` used [arthepsy/sonar-scala-extra](https://github.com/arthepsy/sonar-scala-extra) for scapegoat support.
@@ -38,7 +38,8 @@ Please note that if you don't specify the `SONARQUBE_JDBC_URL` variable, SonarQu
3838
## Compatibility Matrix
3939
Version | SonarQube | sonar-scala | sonar-scala-extra
4040
--------|-----------|-------------|------------------
41-
[3.1.0](https://github.com/mwz/sonarqube-scala-docker/releases/tag/3.1.0) | 7.4 ([documentation](https://docs.sonarqube.org/7.4)) ([changelog]()) | [7.1.0](https://github.com/mwz/sonar-scala/releases/tag/v7.1.0) |
41+
[3.2.0](https://github.com/mwz/sonarqube-scala-docker/releases/tag/3.2.0) | 7.4 ([documentation](https://docs.sonarqube.org/7.4/)) ([changelog](https://jira.sonarsource.com/jira/secure/ReleaseNote.jspa?projectId=10930&version=14549)) | [7.2.0](https://github.com/mwz/sonar-scala/releases/tag/v7.2.0) |
42+
[3.1.0](https://github.com/mwz/sonarqube-scala-docker/releases/tag/3.1.0) | 7.4 ([documentation](https://docs.sonarqube.org/7.4/)) ([changelog](https://jira.sonarsource.com/jira/secure/ReleaseNote.jspa?projectId=10930&version=14549)) | [7.1.0](https://github.com/mwz/sonar-scala/releases/tag/v7.1.0) |
4243
[3.0.0](https://github.com/mwz/sonarqube-scala-docker/releases/tag/3.0.0) | 7.3 ([documentation](https://docs.sonarqube.org/display/SONARQUBE73/Documentation)) ([changelog](https://jira.sonarsource.com/jira/secure/ReleaseNote.jspa?projectId=10930&version=14464)) | [7.0.0](https://github.com/mwz/sonar-scala/releases/tag/v7.0.0) |
4344
[2.9.0](https://github.com/mwz/sonarqube-scala-docker/releases/tag/2.9.0) | 6.7.5 LTS ([documentation](https://docs.sonarqube.org/display/SONARQUBE67/Documentation)) ([changelog](https://jira.sonarsource.com/jira/secure/ReleaseNote.jspa?projectId=10930&version=14467)) | [6.6.0](https://github.com/mwz/sonar-scala/releases/tag/v6.6.0) |
4445
[2.8.0](https://github.com/mwz/sonarqube-scala-docker/releases/tag/2.8.0) | 6.7.5 LTS ([documentation](https://docs.sonarqube.org/display/SONARQUBE67/Documentation)) ([changelog](https://jira.sonarsource.com/jira/secure/ReleaseNote.jspa?projectId=10930&version=14467)) | [6.5.1](https://github.com/mwz/sonar-scala/releases/tag/v6.5.1) |
@@ -59,7 +60,8 @@ Please note, that starting from version `2.7.0`, the images no longer contain th
5960

6061

6162
## Changelog
62-
- **3.0.0** - Upgraded sonar-scala to 7.1.0 & SonarQube to 7.4.
63+
- **3.2.0** - Upgraded sonar-scala to 7.2.0.
64+
- **3.1.0** - Upgraded sonar-scala to 7.1.0 & SonarQube to 7.4.
6365
- **3.0.0** - Upgraded sonar-scala to 7.0.0 & SonarQube to 7.3.
6466
- **2.9.0** - Upgraded sonar-scala to 6.6.0.
6567
- **2.8.0** - Upgraded sonar-scala to 6.5.1 & SonarQube to 6.7.5.

README_DOCKERHUB.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ There are two types of images available: images with [sonar-scala](https://githu
66

77
Starting from version `2.7.0`, the images no longer contain the [sonar-scala-extra](https://github.com/arthepsy/sonar-scala-extra) plugin as sonar-scala provides Scapegoat support from version `6.5.0` onwards.
88

9-
- `3.1.0`, `latest` [Dockerfile](https://github.com/mwz/sonar-scala-docker/blob/master/3.1.0/Dockerfile), [(v3.1.0)](https://github.com/mwz/sonar-scala-docker/releases/tag/3.1.0)
9+
- `3.2.0`, `latest` [Dockerfile](https://github.com/mwz/sonar-scala-docker/blob/master/3.2.0/Dockerfile), [(v3.2.0)](https://github.com/mwz/sonar-scala-docker/releases/tag/3.2.0)
10+
- `3.2.0-full` [Dockerfile](https://github.com/mwz/sonar-scala-docker/blob/master/3.2.0-full/Dockerfile), [(v3.2.0)](https://github.com/mwz/sonar-scala-docker/releases/tag/3.2.0)
11+
- `3.1.0` [Dockerfile](https://github.com/mwz/sonar-scala-docker/blob/master/3.1.0/Dockerfile), [(v3.1.0)](https://github.com/mwz/sonar-scala-docker/releases/tag/3.1.0)
1012
- `3.1.0-full` [Dockerfile](https://github.com/mwz/sonar-scala-docker/blob/master/3.1.0-full/Dockerfile), [(v3.1.0)](https://github.com/mwz/sonar-scala-docker/releases/tag/3.1.0)
1113
- `3.0.0` [Dockerfile](https://github.com/mwz/sonar-scala-docker/blob/master/3.0.0/Dockerfile), [(v3.0.0)](https://github.com/mwz/sonar-scala-docker/releases/tag/3.0.0)
1214
- `3.0.0-full` [Dockerfile](https://github.com/mwz/sonar-scala-docker/blob/master/3.0.0-full/Dockerfile), [(v3.0.0)](https://github.com/mwz/sonar-scala-docker/releases/tag/3.0.0)
@@ -35,6 +37,8 @@ Starting from version `2.7.0`, the images no longer contain the [sonar-scala-ext
3537
## What's included
3638
Version | SonarQube | sonar-scala | sonar-scala-extra
3739
--------|-----------|-------------|------------------
40+
3.2.0 || 7.2.0
41+
3.2.0-full | 7.4 | 7.2.0
3842
3.1.0 || 7.1.0
3943
3.1.0-full | 7.4 | 7.1.0
4044
3.0.0 || 7.0.0
@@ -68,7 +72,7 @@ version: "2"
6872
6973
services:
7074
sonarqube:
71-
image: mwizner/sonarqube:7.4-alpine
75+
image: sonarqube:7.4-community
7276
ports:
7377
- "80:9000"
7478
networks:
@@ -77,7 +81,7 @@ services:
7781
- plugins
7882
7983
plugins:
80-
image: mwizner/sonarqube-scala-plugins:3.1.0
84+
image: mwizner/sonarqube-scala-plugins:3.2.0
8185
volumes:
8286
- sonarqube_plugins:/opt/sonarqube/extensions/plugins
8387
command: /bin/true
@@ -90,7 +94,7 @@ volumes:
9094
sonarqube_plugins:
9195
```
9296

93-
You can get the full recipe from [here](https://github.com/mwz/sonar-scala-docker/blob/master/docker-compose.yml).
97+
You can find the full recipe [here](https://github.com/mwz/sonar-scala-docker/blob/master/docker-compose.yml).
9498

9599
To use the `full` image, run the following `docker` command:
96100
```bash
@@ -99,7 +103,7 @@ docker run -d --name sonarqube-scala-plugins-full \
99103
-e SONARQUBE_JDBC_USERNAME=sonar \
100104
-e SONARQUBE_JDBC_PASSWORD=sonar \
101105
-e SONARQUBE_JDBC_URL=jdbc:postgresql://localhost/sonar \
102-
mwizner/sonarqube-scala-plugins:3.1.0-full
106+
mwizner/sonarqube-scala-plugins:3.2.0-full
103107
```
104108

105109
Please 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.

0 commit comments

Comments
 (0)