We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Right now I can configure SONARQUBE_WEB_JVM_OPTS (https://github.com/SonarSource/docker-sonarqube/blob/master/6.3.1/run.sh#L14) to tune JVM for Web Server. There is no way to configure JVM for Compute Engine.
I suggest to introduce SONARQUBE_CE_JVM_OPTS property.
The text was updated successfully, but these errors were encountered:
Properties mentioned in https://github.com/SonarSource/sonarqube/blob/5.6.6/sonar-application/src/main/assembly/conf/sonar.properties that control JVM options of underlying processes (sonar.web.javaOpts, sonar.ce.javaOpts and sonar.search.javaOpts) can be passed as following
docker run -d sonarqube -Dsonar.ce.javaOpts=-Xmx2048m
and equivalent of this in a docker-compose notation:
version: "2" services: sonarqube: image: sonarqube command: -Dsonar.ce.javaOpts=-Xmx2048m
Sorry, something went wrong.
Thank you for the tip, it works nicely. I also removed usage of SONARQUBE_WEB_JVM_OPTS and use -Dfoo.bar approach.
SONARQUBE_WEB_JVM_OPTS
-Dfoo.bar
No branches or pull requests
Right now I can configure SONARQUBE_WEB_JVM_OPTS (https://github.com/SonarSource/docker-sonarqube/blob/master/6.3.1/run.sh#L14) to tune JVM for Web Server. There is no way to configure JVM for Compute Engine.
I suggest to introduce SONARQUBE_CE_JVM_OPTS property.
The text was updated successfully, but these errors were encountered: