You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
1.6 KiB
YAML

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

kind: pipeline
type: docker
name: mypubdemo
steps:
- name: build-jar # 流水线名称
image: maven:3.8.5-openjdk-8 # 定义创建容器的Docker镜像
volumes: # 将容器内目录挂载到宿主机仓库需要开启Trusted设置
- name: maven-cache
path: /root/.m2 # 将maven下载依赖的目录挂载出来防止重复下载
- name: maven-build
path: /app/build # 将应用打包好的Jar和执行脚本挂载出来
commands: # 定义在Docker容器中执行的shell命令
- mvn clean package -DskipTests=true -f ./enfi-boot-visitor/pom.xml # 应用打包命
- cp /enfi-boot-visitor/enfi-boot-module-visitor/target/*.jar /app/build/target/
- cp /enfi-boot-visitor/enfi-boot-module-visitor/Dockerfile /app/build/
- name: build-docker
image: plugins/docker
volumes: # 将容器内目录挂载到宿主机仓库需要开启Trusted设置
- name: maven-build
path: /app/build # 将应用打包好的Jar和执行脚本挂载出来
- name: docker
path: /var/run/docker.sock # 挂载宿主机的docker
settings:
dockerfile: /app/build/Dockerfile
commands: # 定义在Docker容器中执行的shell命令
- cd /app/build
- docker build -t enfi-boot:latest -f ./Dockerfile .
- docker run -p 52601:52601 -d --name enfi-boot enfi-boot:latest
- docker ps -a
volumes: # 定义流水线挂载目录,用于共享数据
- name: maven-build
host:
path: /wanghao/data/maven/build # 从宿主机中挂载的目录
- name: maven-cache
host:
path: /wanghao/data/maven/cache
- name: docker
host:
path: /var/run/docker.sock