Docker config without env vars

I am moving my deployment from service to container and was planning on just using env vars…but I ran into this

Use of the environment variables SONARQUBE_JDBC_USERNAME , SONARQUBE_JDBC_PASSWORD , and SONARQUBE_JDBC_URL is deprecated and will stop working in future releases.

How are these values passed to the container if not via environment variables?

1 Like

Hi @cpfort ,

these specific once are deprecated. you can find all supported environment variables in our docs here.

The replacement for the three mentioned envs are:

  • SONAR_JDBC_USERNAME
  • SONAR_JDBC_PASSWORD
  • SONAR_JDBC_URL

hope that helps :slight_smile:

1 Like

Phew…now I understand.

Thanks @Tobias_Trabelsi !

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.