无法在.gitlab-ci.yml中将gitlab服务链接到自己的容器

时间:2016-09-15 08:52:00

标签: continuous-integration gitlab gitlab-ci

我有一个简单的.gitlab-ci.yml文件:

image: docker:latest

services:
  - docker:dind
  - postgres:9.5

stages:
- build
- test

variables:
  STAGING_REGISTRY: "dhub.example.com"
  CONTAINER_TEST_IMAGE: ${STAGING_REGISTRY}/${CI_PROJECT_NAME}:latest


before_script:
  - docker login -u gitlab-ci -p $DHUB_PASSWORD $STAGING_REGISTRY

build:
  stage: build
  script:
    - docker build --pull -t $CONTAINER_TEST_IMAGE -f Dockerfile-dev .
    - docker push $CONTAINER_TEST_IMAGE

test:
  stage: test
  script:
    - docker run --env-file=.environment --link=postgres:db $CONTAINER_TEST_IMAGE nosetests

在实际测试阶段之前一切正常。在测试中,我无法访问我的postgres服务。 docker: Error response from daemon: Could not get container for postgres.

我试着写这样的测试:

test1:
  stage: test
  image: $CONTAINER_TEST_IMAGE
  services:
    - postgres:9.5
  script:
    - python manage.py test

但在这种情况下,由于身份验证,我无法提取此图片:

ERROR: Preparation failed: unauthorized: authentication required

我错过了什么吗?

0 个答案:

没有答案