Quellcode durchsuchen

Add installation instruction given by official doc

DricomDragon vor 5 Jahren
Ursprung
Commit
ee2fd4895e
1 geänderte Dateien mit 16 neuen und 0 gelöschten Zeilen
  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 ;
+```