Skip to content

Instantly share code, notes, and snippets.

View Ugur22's full-sized avatar
💻
Coding

Uğur Ertaş Ugur22

💻
Coding
View GitHub Profile
@Ugur22
Ugur22 / sonarqube-mysql-docker-compose.yml
Created December 29, 2017 11:37 — forked from batmat/sonarqube-mysql-docker-compose.yml
Working SonarQube + Mysql Dead Simple Docker Compose file
sonarqube:
image: sonarqube:5.1.1
ports:
- "9000:9000"
- "3306:3306"
environment:
- SONARQUBE_JDBC_USERNAME=sonar
- SONARQUBE_JDBC_PASSWORD=sonar
- SONARQUBE_JDBC_URL=jdbc:mysql://localhost:3306/sonar?useUnicode=true&characterEncoding=utf8&rewriteBatchedStatements=true