Browse Source

Add installation instruction given by official doc

DricomDragon 5 years ago
parent
commit
ee2fd4895e
1 changed files with 16 additions and 0 deletions
  1. 16 0
      Guides/jenkins.md

+ 16 - 0
Guides/jenkins.md

@@ -0,0 +1,16 @@
+# Jenkins
+
+How to install and administrate Jenkins.
+
+## Install
+
+### Raspberry Pi
+
+[Jenkins doc : installation](https://jenkins.io/doc/book/installing/#debianubuntu)
+
+```
+wget -q -O - https://pkg.jenkins.io/debian/jenkins.io.key | sudo apt-key add - ;
+sudo sh -c 'echo deb https://pkg.jenkins.io/debian-stable binary/ > /etc/apt/sources.list.d/jenkins.list' ;
+sudo apt-get update ;
+sudo apt-get install jenkins ;
+```