- Get docker image :
docker pull jenkins/jenkins:lts-jdk11
- play and run with jenkins using docker, command line :
docker run -d -v jenkins_home:/var/jenkins_home -p 8080:8080 -p 50000:50000 jenkins/jenkins:lts-jdk11
- You can also use docker-compose up -d, adding the following content to the docker-compose.yml :
# Define docker compose for the jenkins udemy course.
# [email protected]
version: '3'
services:
jenkins:
container_name: jenkins_udemy
image: jenkins/jenkins:lts-jdk11
ports:
- "8080:8080"
- "50000:50000"
volumes:
- $PWD/jenkins_home:/var/jenkins_home
networks:
- netjenkins
networks:
netjenkins:
- if you want to stop the service :
docker-compose stop
- if you want to start the service :
docker-compose start
- if you want to delete all the service :
docker-compose down
keep in mind that if you previously execute the down command you will need to run the up command:
docker-compose up