我在Docker上运行了一个带有docker-compose for dev环境的项目.
我想通过gitlab-ci-multi-runner"Docker mode"实例在GitLabCI上运行它.
这是我的.gitlab-ci.yml文件:
image: soullivaneuh/docker-bash before_script: - apk add --update bash curl - curl --silent --location https://github.com/docker/compose/releases/download/1.5.2/docker-compose-`uname -s`-`uname -m` > /usr/local/bin/docker-compose - chmod +x /usr/local/bin/docker-compose - ./configure - docker-compose up -d
请注意,soullivaneuh/docker-bash图像只是安装了bash的docker镜像.
脚本docker-compose up -d
命令失败:
gitlab-ci-multi-runner 0.7.2 (998cf5d) Using Docker executor with image soullivaneuh/docker-bash ... Pulling docker image soullivaneuh/docker-bash:latest ... Running on runner-1ee5079f-project-3-concurrent-1 via sd-59984... Fetching changes... Removing app/config/parameters.yml Removing docker-compose.env HEAD is now at 5c5e7ff remove docker service From https://git.dummy.net/project/project 5c5e7ff..45e643d docker-ci -> origin/docker-ci Checking out 45e643dd as docker-ci... Previous HEAD position was 5c5e7ff... remove docker service HEAD is now at 45e643d... Remove docker info commands $ apk add --update bash curl fetch http://dl-4.alpinelinux.org/alpine/v3.2/main/x86_64/APKINDEX.tar.gz OK: 10 MiB in 28 packages $ curl --silent --location https://github.com/docker/compose/releases/download/1.5.2/docker-compose-`uname -s`-`uname -m` > /usr/local/bin/docker-compose $ chmod +x /usr/local/bin/docker-compose $ ./configure $ docker-compose up -d bash: line 30: /usr/local/bin/docker-compose: No such file or directory ERROR: Build failed with: exit code 1
我绝对不知道为什么会失败.
感谢帮助.