当前位置:   article > 正文

搭建gitlab仓库_gitlab仓库搭建

gitlab仓库搭建

yum安装gitlab仓库

搭建gitlab仓库

配置yum源
vim /etc/yum.repos.d/gitlab-ce.repo
[gitlab-ce]
name=gitlab-ce
baseurl=https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7
gpgcheck=0
Repo_gpgcheck=0
Enabled=1
Gpgkey=https://packages.gitlab.com/gpg.key

sudo yum install gitlab-ce -y
sudo yum makecache
sudo yum install gitlab-ce        #自动安装最新版
sudo yum install gitlab-ce-x.x.x    #安装指定版本


gitlab-ctl reconfigure
cat /etc/gitlab/initial_root_password   #查看gitlab的初始密码 用户名root
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18

gitlab常用命令

sudo gitlab-ctl start    # 启动所有 gitlab 组件;
sudo gitlab-ctl stop        # 停止所有 gitlab 组件;
sudo gitlab-ctl restart        # 重启所有 gitlab 组件;
sudo gitlab-ctl status        # 查看服务状态;
sudo gitlab-ctl reconfigure        # 启动服务;
sudo vim /etc/gitlab/gitlab.rb        # 修改默认的配置文件;
gitlab-rake gitlab:check SANITIZE=true --trace    # 检查gitlab;
sudo gitlab-ctl tail        # 查看日志;
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

docker构建gitlab仓库

安装 Docker:确保您已经在您的机器上安装了 Docker。您可以从 Docker 官方网站上获取适用于您操作系统的 Docker 安装包,并按照说明进行安装。

拉取Gitlab镜像

docker pull gitlab/gitlab-ce
  • 1

创建并运行 GitLab 容器:运行以下命令来创建并运行 GitLab 容器:



docker run --detach \
  --publish 443:443 --publish 80:80 --publish 22:22 \
  --name gitlab \
  --restart always \
  --volume /srv/gitlab/config:/etc/gitlab \
  --volume /srv/gitlab/logs:/var/log/gitlab \
  --volume /srv/gitlab/data:/var/opt/gitlab \
  gitlab/gitlab-ce
这将创建一个名为 "gitlab" 的容器,并将 GitLab 的配置、日志和数据分别挂载到本地机器上的相应目录中(您可以根据需要更改这些目录)。

访问 GitLab:一旦容器成功启动,您可以通过在浏览器中访问 http://localhost 来访问 GitLab。在首次访问时,您将需要设置管理员密码和其他相关配置。
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13

创建并运行Gitlab容器

docker run --detach \
  --publish 10443:443 --publish 1080:80 --publish 1022:22 \
  --name gitlab \
  --restart always \
  --volume /mydata/gitlab/config:/etc/gitlab \
  --volume /mydata/gitlab/logs:/var/log/gitlab \
  --volume /mydata/gitlab/data:/var/opt/gitlab \
  gitlab/gitlab-ce:latest
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/秋刀鱼在做梦/article/detail/814398
推荐阅读
相关标签
  

闽ICP备14008679号