【发布时间】:2017-06-14 22:26:59
【问题描述】:
数字海洋杀死docker进程,为什么?
cache:
untracked: true
key: "$CI_BUILD_REF_NAME"
paths:
- .yarn
- node_modules/
- client/semantic/
before_script:
- yarn config set cache-folder .yarn
- yarn install
stages:
- build
Compile:
stage: build
script:
- npm run build:prod
artifacts:
paths:
- dist/
cache:
untracked: true
key: "$CI_BUILD_REF_NAME"
paths:
- dist/
在2 minutes 34 seconds之后..
[4/4] Building fresh packages...
Killed
ERROR: Job failed: exit code 1
为什么被杀?
我有一个本地环境,具有相同的 linux 发行版+docker+gitlab runner。并且在本地工作。
【问题讨论】:
标签: docker digital-ocean gitlab-ci gitlab-ci-runner