aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorBogumil Zebek <bogumil.zebek@nokia.com>2020-04-22 09:32:21 +0200
committerZebek Bogumil <bogumil.zebek@nokia.com>2020-04-22 12:35:34 +0200
commit73c8eec617cc81cac71c9d1670722a003c0ed86f (patch)
treed810583fde6f68a70f40231b0a0f8308333dc412 /Makefile
parent6528bdf36e6eee2aae7f4a83395821c13619c6bb (diff)
Add SonarQube local starter
In README_SONAR.md you can find how to configure and run SonarQube locally. Issue-ID: INT-1517 Signed-off-by: Zebek Bogumil <bogumil.zebek@nokia.com> Change-Id: Ic5daa070e56cd28bd18b8f8f8abcbb793005cf3a
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile21
1 files changed, 21 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..cb456c5
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,21 @@
+create-sonarqube:
+ @echo "##### Create SonarQube #####"
+ docker run -d --name sonarqube -p 9000:9000 -p 9092:9092 sonarqube
+ @echo "************************************************"
+ @echo "*** Follow instructions from README_SONAR.md ***"
+ @echo "************************************************"
+ @echo "##### DONE #####"
+
+start-sonarqube:
+ @echo "##### Start SonarQube #####"
+ docker start sonarqube
+ @echo "************************************************"
+ @echo "*** Follow instructions from README_SONAR.md ***"
+ @echo "************************************************"
+ @echo "##### DONE #####"
+
+stop-sonarqube:
+ @echo "##### Stop SonarQube #####"
+ docker stop sonarqube
+ @echo "##### DONE #####"
+