Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 966 Bytes

commandes installation Docker - jenkins.md

File metadata and controls

29 lines (19 loc) · 966 Bytes

Installation Docker

sudo apt-get update

sudo apt-get install openjdk-11-jdk git ca-certificates curl gnupg lsb-release -y

sudo mkdir -p /etc/apt/keyrings 
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg 
echo   "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null 
sudo apt-get update -y

sudo apt-get install docker-ce docker-ce-cli containerd.io docker-compose-plugin -y

Intallation Jenkins

wget -q -O - https://pkg.jenkins.io/debian-stable/jenkins.io.key | sudo apt-key add - 
sudo sh -c 'echo deb http://pkg.jenkins.io/debian-stable binary/ > /etc/apt/sources.list.d/jenkins.list' 
sudo apt update  -y

sudo apt install jenkins -y

sudo systemctl start jenkins