Last active
May 30, 2020 02:09
-
-
Save arthurfnsc/879510f578fd188401967bbc15541214 to your computer and use it in GitHub Desktop.
SonarQube H2 - Docker Compose
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3" | |
services: | |
sonarqube: | |
image: sonarqube:8.3.1-community | |
expose: | |
- 9000 | |
ports: | |
- "127.0.0.1:9000:9000" | |
networks: | |
- sonarnet | |
volumes: | |
- sonarqube_bundled-plugins:/opt/sonarqube/lib/bundled-plugins | |
- sonarqube_conf:/opt/sonarqube/conf | |
- sonarqube_data:/opt/sonarqube/data | |
- sonarqube_extensions:/opt/sonarqube/extensions | |
networks: | |
sonarnet: | |
volumes: | |
sonarqube_bundled-plugins: | |
sonarqube_conf: | |
sonarqube_data: | |
sonarqube_extensions: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment