docker-gitlab-runner

久未见 提交于 2019-12-18 20:06:31

【推荐】2019 Java 开发者跳槽指南.pdf(吐血整理) >>>

拉取镜像

docker pull gitlab/gitlab-runner:latest

生成容器

docker run -d \
    --name gitlab-runner \
    --restart always \
    -v /gitlab-runner/config:/etc/gitlab-runner \
    -v /var/run/docker.sock:/var/run/docker.sock \
    gitlab/gitlab-runner:latest

进入容器

docker exec -it gitlab-runner /bin/bash

注册runner,并按如下提示输入:

gitlab-runner register

> Please enter the gitlab-ci coordinator URL

https://code.weflys.com

> Please enter the gitlab-ci token for this runner

in1dadgmRQMyso-C9bzW

> Please enter the gitlab-ci description for this runner

gitlab-runner

> Please enter the gitlab-ci tags for this runner

xz-ads3

> Please enter the executor:

shell

完成

回到gitlab系统即可看到runner

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!