Skip to content

Instantly share code, notes, and snippets.

@tjkemper
Created May 11, 2017 03:21
Show Gist options
  • Save tjkemper/0fb4ff5371d4dd261a1deb0764a40376 to your computer and use it in GitHub Desktop.
Save tjkemper/0fb4ff5371d4dd261a1deb0764a40376 to your computer and use it in GitHub Desktop.
# Installing Jenkins on Ubuntu
sudo apt-get -y update
sudo apt-get install -y openjdk-8-jdk
sudo apt-get install -y maven
sudo apt-get install -y git-all
sudo wget -q -O - http://pkg.jenkins-ci.org/debian/jenkins-ci.org.key | sudo apt-key add -
sudo echo deb http://pkg.jenkins-ci.org/debian binary/ > /etc/apt/sources.list.d/jenkins.list
sudo apt-get install -y jenkins
sudo service jenkins status
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment