应该如何在saas runner中使用docker相关命令?
可以正常使用的,流水线示例如下:
docker-build:
image: docker:20.10.16
stage: build
services:
- docker:20.10.16-dind
script:
- docker build --tag $CI_REGISTRY_IMAGE:test .
1 个赞