소스 검색

Add installation instruction given by official doc

DricomDragon 5 년 전
부모
커밋
ee2fd4895e
1개의 변경된 파일16개의 추가작업 그리고 0개의 파일을 삭제
  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 ;
+```