从公共docker中心提取图像失败



我设置了.gitlab-ci。用于CICD的yml文件。它从公共码头提取图像。我得到了下面的误差。我知道为什么它失败了。

ERROR: Job failed: failed to pull image "xxxxxx/validate_dag"[always]: daemon: manifest for xxxxxx/validate_dag:latest not found: manifest unknown: manifest unknown (manager.go:205:0s)

test-dag-dev:
image: "xxxxxx/validate_dag"
stage: test
script:
- python -m unittest -v -b

在我的例子中,我缺少了标签,例如:

test-dag-dev:
image: "xxxxxx/validate_dag:<tag>"
stage: test
script:
- python -m unittest -v -b

最新更新