GitLab-CI:如何在服务命令中使用环境变量

时间:2019-04-18 18:35:36

标签: docker gitlab-ci docker-registry

我在GitLab-CI环境变量中有我的Docker注册表地址。

如何在.gitlab-ci.yml中的服务命令上下文中使用它?

services:
  - name: docker:dind
    command: ["--insecure-registry=$CI_REGISTRY"] # this does not work

build:
  stage: build
  script:
    - docker build -t "$CI_REGISTRY_IMAGE" . # this works properly
    - docker push "$CI_REGISTRY_IMAGE"

0 个答案:

没有答案