- 编写
jenkins.yaml
文件
yaml
version: '3'
services:
jenkins:
image: jenkins/jenkins:latest
restart: always
container_name: jenkins
ports:
- 8005:8080
- 8006:50000
volumes:
- /opt/module/jenkins:/var/jenkins_home
- /etc/localtime:/etc/localtime:ro
- /var/run/docker.sock:/var/run/docker.sock
- /usr/bin/docker:/usr/bin/docker
- /etc/docker/daemon.json:/etc/docker/daemon.json
- /opt/module/jdk/jdk1.8.0_202:/opt/module/jdk/jdk1.8.0_202
- /opt/module/maven/apache-maven-3.9.2:/opt/module/maven/apache-maven-3.9.2
- 启动 Jenkins
bash
docker-compose -f jenkins.yaml up -d