Hi, Do you have in plan to prepare a docker image for the latest version of SonarQube 7.3?
If so, when we could get it?
As a workaround you can simply edit the version in the Dockerfile and build the image on your side.
related #182
I see the comments from the 7.2 release re: no docker image. Aside from the unsure plan on creation/distribution from your (or aegis') side, and any plugin compatibility concerns, are there any intrinsic things to worry about if we just bump the version # in the Dockerfile?
Building the SonarQube 7.3 docker image, I obtain the following error:
gpg: keyserver receive failed: Cannot assign requested address
I solve it by installing the dirmngr debian package:
apt-get install dirmngr
If you observe something like:
java.lang.IllegalStateException: Fail to load plugin C# [csharp]
You need to backup the old plugins in the volume dockersonarqube_sonarqube_extensions:
docker run --rm -it -v dockersonarqube_sonarqube_extensions:/tmp/volume debian bash
cd /tmp/volume/plugins
mkdir old
mv * old
and install the new plugins from the web interface (marketplace).
@Godin apparently, the official stance is "We aren鈥檛 publishing Docker images because we don鈥檛 feel we have the requisite mastery of the topic." This is understandable and laudable, but could you consider building on community support then? You are the owner of https://hub.docker.com/_/sonarqube, which is the main and "official" source for Sonarqube for Docker. Maybe you could explicitely make it a "community project with SonarSource blessing" or something similar. There are more than enough people with Docker experience around to make this image a beauty.
Building the SonarQube 7.3 docker image, I obtain the following error:
gpg: keyserver receive failed: Cannot assign requested addressI solve it by installing the dirmngr debian package:
apt-get install dirmngr
I had the same error, except in my case it was because our corporate firewall was blocking GPG keyserver. Building outside of the firewall was the solution.
Have built 7.4 image by myself and works
Hi Chris, can you share the files?
@PIWIL80 https://github.com/jincod/docker-sonarqube works. Simply replace the version with 7.4.
@PIWIL80 right just use the official Dockerfile and replace the version as 7.4 https://github.com/SonarSource/docker-sonarqube/blob/master/7.1/Dockerfile
Hi @PIWIL80 and @Frederick888
I've added 7.4 version here https://github.com/jincod/docker-sonarqube
We've just released official images of SonarQube Community Edition 7.4 and 6.7.6, available on the hub.
Most helpful comment
@Godin apparently, the official stance is "We aren鈥檛 publishing Docker images because we don鈥檛 feel we have the requisite mastery of the topic." This is understandable and laudable, but could you consider building on community support then? You are the owner of https://hub.docker.com/_/sonarqube, which is the main and "official" source for Sonarqube for Docker. Maybe you could explicitely make it a "community project with SonarSource blessing" or something similar. There are more than enough people with Docker experience around to make this image a beauty.