Last active
July 13, 2024 23:50
-
-
Save jonra1993/ec0ceb54f649fb3c59f8fd3c4d770fdf to your computer and use it in GitHub Desktop.
This is a custom sonarqube container
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.9" | |
services: | |
sonarqube: | |
container_name: "sonarqube-container" | |
image: "sonarqube:9.9.6-community" | |
volumes: | |
- ./sonarqube/extensions:/opt/sonarqube/extensions | |
- ./sonarqube/logs:/opt/sonarqube/logs | |
- ./sonarqube/data:/opt/sonarqube/data | |
expose: | |
- "9000" | |
ports: | |
- "9000:9000" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment