A Docker image for SonarQube with Flutter plugin.
155
This Docker image provides a SonarQube instance with the sonar-flutter-plugin pre-installed. To use it with Docker Compose, create a docker-compose.yml file with the following contents:
version: '3.8'
services:
sonarqube:
image: jandrop/sonarqube-flutter:latest
ports:
- "9000:9000"
Then, run docker-compose up to start the SonarQube instance. You can access the SonarQube web interface at http://localhost:9000. Login with the default credentials: admin/admin.
Note: This image is only intended for local development and testing. For production use, please refer to the official SonarQube documentation.
###Configuration
You can customize the SonarQube instance by providing additional configuration files in the conf/ directory. Simply mount a volume with your configuration files like this:
version: '3.8'
services:
sonarqube:
image: jandrop/sonarqube-flutter:latest
ports:
- "9000:9000"
volumes:
- ./conf:/opt/sonarqube/conf
The ./conf directory should contain your configuration files, such as sonar.properties and logback.xml. See the SonarQube documentation for more information on configuring SonarQube.
Content type
Image
Digest
sha256:c88f11d9e…
Size
383.1 MB
Last updated
over 3 years ago
docker pull jandrop/sonar-flutter