Jenkins
Installation (MacOS)
Install jenkins by using homebrew
brew install jenkins-lts
Start jenkins server
brew services start jenkins-lts
Get the initial password from your directory

Install the recommended plugin

After setting the password, you can see the dashboard

Installation (Docker)
docker pull jenkins/jenkins:lts
docker run -p 8080:8080 -p 50000:50000
-v /Users/petercheng/Desktop/Jenkins:/var/jenkins_home
jenkins/jenkins:lts
Last updated
Was this helpful?