리눅스
우분투 젠킨스 설치.
고.니
2023. 6. 14. 23:04
반응형
젠킨스 공식 페이지 : https://www.jenkins.io/doc/book/installing/linux/
Debian/Ubuntu
On Debian and Debian-based distributions like Ubuntu you can install Jenkins through apt.
Long Term Support release
A LTS (Long-Term Support) release is chosen every 12 weeks from the stream of regular releases as the stable release for that time period. It can be installed from the debian-stable apt repository.
curl -fsSL https://pkg.jenkins.io/debian-stable/jenkins.io-2023.key | sudo tee \
/usr/share/keyrings/jenkins-keyring.asc > /dev/null
echo deb [signed-by=/usr/share/keyrings/jenkins-keyring.asc] \
https://pkg.jenkins.io/debian-stable binary/ | sudo tee \
/etc/apt/sources.list.d/jenkins.list > /dev/null
sudo apt-get update
sudo apt-get install jenkins
반응형