Install Sonar on Raspberry Pi

# Get GIT
sudo apt-get install git

# Get GIT repo
git clone https://github.com/SonarSource/docker-sonarqube.git

cd docker-sonarqube/9/community

# Build docker image
docker build -t sonarqube-custom .

# Start docker image
docker run -d -p 9000:9000 sonarqube-custom

# Remove container
docker rm sonarqube-custom

Leave a Reply

Your email address will not be published. Required fields are marked *