Skip to content

Instantly share code, notes, and snippets.

View magesh-memorres's full-sized avatar
🎯
Focusing

MageshBabu magesh-memorres

🎯
Focusing
View GitHub Profile
@magesh-memorres
magesh-memorres / install-sonarqube.sh
Created April 23, 2024 10:51
This will install sonarqube with docker. It requires docker to be installed
#!/bin/bash
# Check if Docker is accessible
if ! command -v docker &> /dev/null
then
echo "Docker is not installed or accessible. Please install Docker and try again."
exit 1
fi
# Check if a container named "sonarqube" already exists