DEV Community

Discussion on: How I configured SonarQube for Python code analysis with Jenkins and Docker

Collapse
 
perchrh profile image
Per Christian Henden

Practical issue with a missing parameter in the docker run command:
It should have been
$ docker run -d --name sonarqube -p 9000:9000 -p 9092:9092 sonarqube
The last parameter is the missing one, the image name.
Doesn't work at all with docker 19.0.3 without the final parameter, for me.