Last active
August 29, 2015 14:13
-
-
Save wpscholar/e222af022291ccf315ec to your computer and use it in GitHub Desktop.
Create a Jenkins box
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
wget -q -O - http://pkg.jenkins-ci.org/debian/jenkins-ci.org.key | apt-key add - sh -c 'echo deb http://pkg.jenkins-ci.org/debian binary/ > /etc/apt/sources.list.d/jenkins.list' | |
apt-get update -y | |
apt-get install jenkins -y | |
service jenkins start |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment