分类: git
安装gitlab-runner创建CI/CD流水线
1.本地部署gitlab和gitlab容器
services:
gitlab:
image: 'gitlab/gitlab-ce:latest'
restart: always
container_name: gitlab
hostna……
git不信任自签名https证书解决
git推送到自签名https证书的服务器时会提示
fatal: unable to access 'https://git.com/muye/gittest.git/': SSL certificate problem: unable to get local i……
Docker gitlab设置代理
本地docker搭建的gitlab在web页面导入github仓库有点慢,设置代理后快多了。
在/etc/gitlab/gitlab.rb 写入自己的代理
gitlab_rails['env'] = {
"http_pr……