Set up and start your container
How to set up and start your SonarQube Community Build container.
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>Using Docker compose
Mandatory and relevant settings
Set access to the database
Check the web server connection parameters
Enabling IPv6
Keeping user sessions alive on server restart
Related pages
Last updated
Was this helpful?

