Starting SonarQube container
Start the SonarQube Server container either from the command line (docker run) or from a configuration file (docker compose).
Starting the container by using docker run
$> docker run -d --name sonarqube \
-p 9000:9000 \
-e SONAR_JDBC_URL=... \
-e SONAR_JDBC_USERNAME=... \
-e SONAR_JDBC_PASSWORD=... \
-v sonarqube_data:/opt/sonarqube/data \
-v sonarqube_extensions:/opt/sonarqube/extensions \
-v sonarqube_logs:/opt/sonarqube/logs \
<image_name>Starting the container by using Docker compose
Related pages
Last updated
Was this helpful?

