Pull docker image
Pull sonarqube docker image
This is around 900 MB of download, before executing it make sure you do not already have it by issuing the command below:
docker ps -a
Explanation
The command docker pull sonarqube
is used to pull the SonarQube Docker image from a container registry. Here's what the command does:
docker pull
: This is the command to pull a Docker image from a registry.sonarqube
: This is the name of the Docker image being pulled. In this case, it refers to the official SonarQube image available on Docker Hub. When you execute this command, Docker will retrieve the SonarQube image from the Docker Hub registry.
By running this command, you download the SonarQube Docker image to your local machine. Once the image is pulled, you can use it to create and run SonarQube containers on your Docker environment. The pulled image will serve as the base for running the SonarQube service in a containerized environment.
Last updated