我在Docker上运行了一个带有docker-compose for dev环境的项目。
我想通过gitlab-ci-multi-runner" Docker模式"在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
我绝对不知道为什么会失败。
感谢您的帮助。
答案 0 :(得分:3)
No such file or directory
具有误导性。我尝试使用alpine linux运行动态链接二进制文件时已经收到了很多次(看起来你正在使用它)。
问题(据我所知)是二进制编译并链接到glibc,但alpine使用musl,而不是glibc。
您可以使用ldd /usr/local/bin/docker-compose
告诉您哪些库缺失(如果其他所有库都失败,则使用strace
运行它。)
为了使它工作,从python源(https://docs.docker.com/compose/install/#install-using-pip)安装可能更容易,这是官方撰写的图像(https://github.com/docker/compose/blob/master/Dockerfile.run)。
或者您可以使用在debian或其他使用glibc的发行版上构建的图像。