小编Fáb*_*ro 的帖子

在drone.io上使用dind

我正在尝试从gitlab ci转到drone.io.但我不能让DIND在gitlab上运行良好.以上是我在gitlab上的表现.

variables:
  NODE_ENV: 'test'
  DOCKER_DRIVER: overlay

image: gitlab/dind

services:
  - docker:dind

cache:
  untracked: true

stages:
  - test

test:
  stage: test
  before_script:
    - docker info
    - docker-compose --version
    - docker-compose pull
    - docker-compose build
  after_script:
    - docker-compose down
  script:
    - docker-compose run --rm api yarn install
Run Code Online (Sandbox Code Playgroud)

如何创建等效的无人机文件?

continuous-integration drone.io drone

2
推荐指数
1
解决办法
1247
查看次数

标签 统计

continuous-integration ×1

drone ×1

drone.io ×1