我有一个自定义的 gitlab ci,我想编译一个 Golang 应用程序并构建一个 docker 镜像。我决定使用 alpine docker 映像作为 gitlab 运行器。我无法接缝让码头工人开始。我尝试手动启动 docker 并收到错误 ( * WARNING: docker is already starting
(,如果我不手动启动 docker 服务,我会得到 ( Fails (Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?
( 还有其他人遇到过这种情况吗?
这不是一个重复的问题。Gitlab 运行器在根目录中运行 docker 高山容器(通过运行 whoami 验证(。为了尝试,我确实尝试了usermod -aG docker $(whoami)
并具有相同的输出。
gitlab-ci.yml
image: alpine
variables:
GO_PROJECT: linkscout
before_script:
- apk add --update go git libc-dev docker openrc
- mkdir -p ~/go/src/${GO_PROJECT}
- cp -r ${CI_PROJECT_DIR}/* ~/go/src/${GO_PROJECT}/
- cd ~/go/src/${GO_PROJECT}
- service docker start # * WARNING: docker is already starting
stages:
- compile
- build
compile:
stage: compile
script:
- go get
- go build -a
build:
stage: build
script:
- docker version # If I don't run (service docker start) I get this message: Fails (Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?)
默认情况下,您不能使用 Docker-in-docker。您应该像这样配置您的运行器。然后,如解释中所述,也使用 docker:latest
作为图像而不是 alpine
.