File tree Expand file tree Collapse file tree 3 files changed +12
-1
lines changed Expand file tree Collapse file tree 3 files changed +12
-1
lines changed Original file line number Diff line number Diff line change 32
32
Basic software(mostly for Ruby on Rails apps)
33
33
34
34
- [ ImageMagick] ( https://en.wikipedia.org/wiki/ImageMagick )
35
+ - Java 8
35
36
- [ Jenkins] ( https://jenkins.io )
36
37
- [ Let's Encrypt] ( https://letsencrypt.org/ )
37
38
- Library Essentials
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ # Java8 doesn't have an official PPA so it needs to be installed from a third party.
4
+ # See Ask Ubuntu about it: https://askubuntu.com/a/944260/167553
5
+
6
+ # Commands taken from http://www.webupd8.org/2012/09/install-oracle-java-8-in-ubuntu-via-ppa.html
7
+
8
+ add-apt-repository -y ppa:webupd8team/java
9
+ apt-get update
10
+ apt-get -y install oracle-java8-installer
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
- wget -q -O - https://pkg.jenkins.io/debian/jenkins-ci.org .key | sudo apt-key add -
3
+ wget -q -O - https://pkg.jenkins.io/debian/jenkins.io .key | sudo apt-key add -
4
4
sudo sh -c ' echo deb http://pkg.jenkins.io/debian-stable binary/ > /etc/apt/sources.list.d/jenkins.list'
5
5
sudo apt-get update
6
6
sudo apt-get -y install jenkins
You can’t perform that action at this time.
0 commit comments