当前位置:   article > 正文

gitlab(docker)安装及使用_gitlab docker安装

gitlab docker安装

GitLab

GitLab 是一个用于仓库管理系统的开源项目,使用Git作为代码管理工具,并在此基础上搭建起来的Web服务。

下载(docker)

查询docker镜像gitlab-ce

gitlab-ce是它的社区版

[root@localhost ~]# docker search gitlab-ce
NAME                                     DESCRIPTION                                      STARS     OFFICIAL   AUTOMATED
rapidfort/gitlab-ce                                                                       12                   
drud/gitlab-ce                                                                            18                   
gitlab/gitlab-ce                         GitLab Community Edition docker image based …   4043                 [OK]
  • 1
  • 2
  • 3
  • 4
  • 5

下载镜像

下载镜像gitlab/gitlab-ce

latest: Pulling from gitlab/gitlab-ce
7b1a6ab2e44d: Pull complete 
6c37b8f20a77: Pull complete 
f50912690f18: Pull complete 
bb6bfd78fa06: Pull complete 
2c03ae575fcd: Pull complete 
839c111a7d43: Pull complete 
4989fee924bc: Pull complete 
666a7fb30a46: Downloading [=================================>                 ]  662.1MB/995.5MB
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
image-20231028102116989

启动安装docker容器

创建gitlab文件夹

[root@localhost softwares]# mkdir gitlab
[root@localhost softwares]# ll
总用量 0
drwxr-xr-x. 2 root root   6 1028 10:24 gitlab
drwxr-xr-x. 3 root root  60 923 23:41 jdk
drwxr-xr-x. 4 root root  30 924 23:44 mysql
drwxr-xr-x. 5 root root 109 924 17:44 nexus
drwxr-xr-x. 4 root root  42 1022 22:17 redis
[root@localhost softwares]# pwd
/usr/local/softwares
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

创建config,logs,data文件夹

[root@localhost gitlab]# mkdir config logs data
[root@localhost gitlab]# tree
.
├── config
├── data
└── logs
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

创建运行容器

docker run -it \
--hostname wnhz-gitlab.com \
--name gitlab \
-p 443:443 -p 80:80 -p 23:22 \
--network wn_docker_net \
--ip 172.18.12.50 \
-v /usr/local/softwares/gitlab/config:/etc/gitlab \
-v /usr/local/softwares/gitlab/logs:/var/log/gitlab \
-v /usr/local/softwares/gitlab/data:/var/opt/gitlab \
-d gitlab/gitlab-ce
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
[root@localhost gitlab]# docker ps
CONTAINER ID   IMAGE              COMMAND                   CREATED         STATUS                            PORTS                                                                                                         NAMES
cf0f38c6f0a4   gitlab/gitlab-ce   "/assets/wrapper"         4 seconds ago   Up 3 seconds (health: starting)   0.0.0.0:80->80/tcp, :::80->80/tcp, 0.0.0.0:443->443/tcp, :::443->443/tcp, 0.0.0.0:23->22/tcp, :::23->22/tcp   gitlab
  • 1
  • 2
  • 3

image-20231028103727630

gitlab配置

访问http://192.168.198.128/ linux主机地址

image-20231028104240900

设置用户名密码

命令行:docker exec -it gitlab bash 进入容器

输入命令行 gitlab-rails console
[root@localhost gitlab]# docker exec -it gitlab bash
root@cf0f38c6f0a4:/# gitlab-rails console
  • 1
  • 2
image-20231028104800393
输入用户名密码存储

user=User.find_by_username ‘root’

user.password=‘88888888’

user.save!

Loading production environment (Rails 6.1.4.1)
irb(main):001:0> user=User.find_by_username 'root'
=> #<User id:1 @root>
irb(main):004:0> user.password='88888888'
=> "88888888"
irb(main):005:0> user.save!
=> true
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

登录

使用设置的用户名,密码登录

image-20231028110300882

image-20231028110418263

Gitlab设置

关闭自动注册功能

  1. Menu->Admin
image-20231028110734926
  1. Settings->Geneal->Sign-up restrictions

    image-20231028111304075

  2. 禁止注册

image-20231028111514129

创建用户User

在Admin下点击Admin Area --> Users

image-20231028160521926

创建用户: New user

image-20231028160645382

编辑用户信息

image-20231028171010878

image-20231028171043766

给指定用户添加密码

image-20231028171126165

image-20231028170724153

image-20231028171205774

image-20231028171258374

使用新用户登录

image-20231028171357621

第一次登录强制要求修改密码

image-20231028171457184

image-20231028171518117

修改个人信息

image-20231028171733142 image-20231028172221046

优化gitlab占用内存

进入gitlab容器

使用root用户登录

 docker exec -it gitlab bash
  • 1
进入etc/gitlab文件夹

image-20231108115030399

修改gitlab.rb文件

tips: 如果容器中不能使用vim命令,使用 apt-get update , apt-get install vim安装

  • gitlab_rails[‘env’]

     597 gitlab_rails['env'] = {
     598    'MALLOC_CONF' => 'dirty_decay_ms:1000,muzzy_decay_ms:1000'
     599 #    "SKIP" => "db,uploads,repositories,builds,artifacts,lfs,registry,pages"
     600 }
    
    • 1
    • 2
    • 3
    • 4

    image-20231108115801248

  • [‘worker_processes’]

    禁用 puma cluster 模式

     974 puma['worker_timeout'] = 60
     975 puma['worker_processes'] = 0
    
    • 1
    • 2

    image-20231108115851491

  • sidekiq

    1018 sidekiq['max_concurrency'] = 10
    
    • 1

    image-20231108115630520

重启容器
  1. 配置生效

在容器中输入: gitlab-ctl reconfigure

root@192:/etc/gitlab# gitlab-ctl reconfigure
  • 1
  1. 重启容器

在容器内输入:gitlab-ctl restart 重启容器。

root@192:/etc/gitlab# gitlab-ctl restart
  • 1
查询gitlab的内存占用

docker stats gitlab

image-20231108120431441

idea使用gitlab

在gitLab上创建仓库

image-20231028231136138

image-20231028234700741

image-20231028232818889

idea使用gitlab错误

error: unable to read askpass response from ‘C:\Users\Administrator\AppData\Local\JetBrains\IntelliJIdea2021.3\tmp\intellij-git-askpass-local.sh’

image-20231109082705147

解决方案: 修改项目隐藏.git下的config文件,添加gitlab用户名密码

image-20231109082845238

image-20231109082953642

rom ‘C:\Users\Administrator\AppData\Local\JetBrains\IntelliJIdea2021.3\tmp\intellij-git-askpass-local.sh’

[外链图片转存中…(img-T4YqWwcg-1713174221296)]

解决方案: 修改项目隐藏.git下的config文件,添加gitlab用户名密码

[外链图片转存中…(img-j8DfMdIM-1713174221296)]

[外链图片转存中…(img-26rFhQvk-1713174221296)]

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/运维做开发/article/detail/758872
推荐阅读
相关标签
  

闽ICP备14008679号