流水线编排
手册分类
- 1. 禅道DevOps解决方案介绍
- 1.1 关于禅道DevOps解决方案
- 2. 安装与升级
- 2.1 快速安装
- 3. 应用
- 3.1 管理应用
- 4. 代码库
- 5. 流水线
- 6. 制品库
- 6.1 管理制品库
- 7. 部署
- 8. DevOps设置
- 9. 命令行工具
- 9.1 安装及升级
- 9.2 status子命令说明
数据卷 分享链接
作者:赵红梅
最后编辑:赵红梅 于 2024-10-29 14:46:03
浏览量:159
流水线步骤可以挂载各种类型的数据卷到容器中。
临时卷
docker的临时数据卷会在流水线开始前创建,并在流水线结束后销毁。临时卷用来在流水线的各个步骤中共享文件或文件夹:
kind: pipeline spec: stages: - type: ci spec: volumes: - name: cache spec: {} type: temp steps: - name: test type: run spec: container: golang mount: - name: cache path: /go script: | - go install go test - name: build type: run spec: container: golang mount: - name: cache path: /go script: | - go build