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

One thought on “Install Sonar on Raspberry Pi”

  1. THANK YOU!!! I have been struggling for days to get SonarQube running on my Raspberry Pi 5 running Dockers. I am doing a CICD project using Jenkins, SonarQube, and Nexus Repo. This completely worked and saved me so much time and headaches! Thanks for your hard work, my friend.

Leave a Reply

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