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
When setting variable environment like SONARQUBE_JDBC_* or like sonar.* (as allowed in recent release of sonarqube docker) they are ignored.
SONARQUBE_JDBC_*
sonar.*
Run the docker-compose.yml script provided.
docker-compose.yml
Variables like SONARQUBE_JDBC_* or like sonar.* should be passed to bin/run.sh.
bin/run.sh
The text was updated successfully, but these errors were encountered:
After investigation, it is certainly due to the su sonarqube... instruction in the /tmp/init.sh.
su sonarqube...
/tmp/init.sh
Sorry, something went wrong.
Possible fix:
su ...
USER sonarqube
Or simply explicitly pass SONARQUBE_* in the su command line.
Successfully merging a pull request may close this issue.
Describe the bug
When setting variable environment like
SONARQUBE_JDBC_*
or likesonar.*
(as allowed in recent release of sonarqube docker) they are ignored.To reproduce
Run the
docker-compose.yml
script provided.Expected behavior
Variables like
SONARQUBE_JDBC_*
or likesonar.*
should be passed tobin/run.sh
.The text was updated successfully, but these errors were encountered: