Continuous Integration using Docker
Sat 19 March 2016Original article: Continuous Integration Platform Using Docker Containers: Jenkins, SonarQube, Nexus, GitLab Continuous Integration is a software development practice where members of a team integrate their work frequently, usually each person integrates at least daily - leading to multiple integrations per day. Each integration is verified by an automated build (including ...
SonarQube in Docker environment
Mon 14 September 2015Install Pull Docker images for PostgreSQL and SonarQube $ docker pull postgres:9.4 $ docker pull sonarqube:5.1.2 Configuration Database configuration By default, the image will use an embedded H2 database that is not suited for production. The production database is configured with these variables: SONARQUBE_JDBC_USERNAME SONARQUBE_JDBC_PASSWORD SONARQUBE_JDBC_URL $ docker ...