Sign inSign up

qwiksense/sonar-gitlab

By qwiksense

Updated almost 10 years ago

SonarQube image including C#, Gitlab and Gitlab-Auth plugins

Image
0

10K+

qwiksense/sonar-gitlab repository overview

The image uses postgresql. Recommended docker-compose file:

version: '2'

networks:
  prodnetwork:
    driver: bridge

services:
 sonar:
  image: qwiksense/sonar-gitlab:latest
  ports:
   - "19000:9000"
   - "5432:5432"
  networks:
    - prodnetwork
  depends_on:
    - sonardb
  environment:
   - SONARQUBE_JDBC_URL=jdbc:postgresql://sonardb:5432/sonar
 sonardb:
  networks:
    - prodnetwork
  image: postgres
  environment:
   - POSTGRES_USER=sonar
   - POSTGRES_PASSWORD=sonar
  volumes:
    - /mnt/user/appdata/postgres/data:/var/lib/postgresql/data```


The Volumes path has been adjusted for use on unRaid as a docker host.

Tag summary

Content type

Image

Digest

Size

431.2 MB

Last updated

almost 10 years ago

docker pull qwiksense/sonar-gitlab