• 使用Docker部署Gitlab的记录


    docker版本

    使用docker -v查看

    Docker version 1.13.1, build 7d71120/1.13.1
    
    • 1

    运行容器镜像

    映射本机的9980端口为Docker内部的80端口
    映射本机的9922端口为Docker内部的22端口
    使用root用户启动
    映射本机目录/mnt/sda/gitlab/log为Docker内部的/var/log/gitlab
    映射本机目录/mnt/sda/gitlab/opt为Docker内部的/var/opt/gitlab
    映射本机目录/mnt/sda/gitlab/etc为Docker内部的/etc/gitlab
    使容器内部拥有root权限
    Docker容器名称为gitlab
    镜像为gitlab/gitlab-ce

    docker run -itd \
    -p 9980:80 \
    -p 9922:22 \
    -u root \
    -v /mnt/sda/gitlab/log:/var/log/gitlab \
    -v /mnt/sda/gitlab/opt:/var/opt/gitlab \
    -v /mnt/sda/gitlab/etc:/etc/gitlab \
    --privileged=true \
    --name=gitlab \
    gitlab/gitlab-ce
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10

    修改gitlab配置

    进入容器

    docker exec -it gitlab /bin/bash
    
    • 1

    编辑配置文件

    vi /etc/gitlab/gitlab.rb
    
    • 1

    修改访问git clone地址

    external_url 'http://192.168.1.2' 
    
    • 1

    修改数据库内存页大小

    postgresql['shared_buffers'] = "256MB"
    
    • 1

    关闭监控服务节约资源占用

    prometheus['enable'] = false
    
    • 1

    使配置生效

    gitlab-ctl reconfigure
    
    • 1

    修改gitlab的内部git配置

    cat >> /var/opt/gitlab/.gitconfig <<EOF
    [http]
            sslverify = false
            lowSpeedLimit = 0
            lowSpeedTime = 999999
    [https]
            sslverify = false
    [url "https://"]
            insteadOf = git://
    [url "https://ghproxy.com/https://github.com/"]
            insteadOf = https://github.com/
    [credential]
            helper = store
    EOF
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14

    修改gitlab root用户账号密码
    连接gitlab控制台

    gitlab-rails console -e production
    
    • 1

    设置用户id为1的用户密码为password

    user=User.where(id:1).first
    user.password='password'
    user.save!
    exit
    
    • 1
    • 2
    • 3
    • 4

    关闭强制双因素认证

    Gitlab::CurrentSettings.update!('require_two_factor_authentication': false)
    
    • 1
  • 相关阅读:
    WEB自动化_webdriver常用方法
    智能座舱总结
    【刷爆LeetCode】七月算法集训(30)拓扑排序
    数据表的查询
    vue 页面监听vuex state值的变化
    java 8 stream API
    安全技术和防火墙——iptables防火墙
    (02)Cartographer源码无死角解析-(19) SensorBridge→雷达点云数据预处理(函数重载)
    二十三、SpringBoot + Jwt + Vue 权限管理系统 (4)
    【Spring】bean的配置
  • 原文地址:https://blog.csdn.net/lx7820336/article/details/132772936