Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/byjg/docker-sonar-scanner

A Docker Image for SonarQube Scanner
https://github.com/byjg/docker-sonar-scanner

docker sonar-scanner sonarqube sonarqube-scanner

Last synced: 28 days ago
JSON representation

A Docker Image for SonarQube Scanner

Awesome Lists containing this project

README

        

# Sonar Scanner

This image runs the sonar scanner

# Tags

- 3.2.0, 3.2.0.1227, latest
- 3.1.0, 3.1.0.1141
- 3.0.3, 3.0.3.778
- 3.0.2, 3.0.2.768
- 3.0.1, 3.0.1.733
- 3.0.0, 3.0.0.702
- 2.9.0, 2.9.0.670

# Running

## With Default parameters:

```
docker run -it --rm \
-v $PWD:/opt/src \
-v $HOME/.sonar:/root/.sonar \
-e SONAR_SCANNER_OPTS="-Xmx512m" \
byjg/sonar-scanner
```

## Passing parameters

```
docker run -it --rm \
-v $PWD:/opt/src \
-v $HOME/.sonar:/root/.sonar \
-e SONAR_SCANNER_OPTS="-Xmx512m" \
byjg/sonar-scanner \
-Dsonar.projectKey=my-project-key \
-Dsonar.sources=. \
-Dsonar.host.url=http://localhost:9000
```