Skip to content

Instantly share code, notes, and snippets.

@wpscholar
Last active August 29, 2015 14:13
Show Gist options
  • Save wpscholar/e222af022291ccf315ec to your computer and use it in GitHub Desktop.
Save wpscholar/e222af022291ccf315ec to your computer and use it in GitHub Desktop.
Create a Jenkins box
#!/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