在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
一、安装Docker#1、卸载旧版本 yum remove docker \ docker-client \ docker-client-latest \ docker-common \ docker-latest \ docker-latest-logrotate \ docker-logrotate \ docker-engine #2、下载需要的安装包 sudo yum install -y yum-utils #3、设置镜像的仓库,推荐使用阿里云的,十分的快 yum-config-manager \ --add-repo \ http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo #4、更新yum软件包的索引 yum makecache #5安装新版的containerd.io dnf install https://download.docker.com/linux/centos/7/x86_64/stable/Packages/containerd.io-1.2.6-3.3.el7.x86_64.rpm #6、安装docker相关的内容 docker-ce 社区版 ee企业版 sudo yum install docker-ce docker-ce-cli --allowerasing #7、启动Docker systemctl start docker #8、判断是否启动成功 docker version 二、安装GitLab①、新建容器数据卷文件夹 mkdir /data/gitlab/config -p mkdir /data/gitlab/logs -p mkdir /data/gitlab/data -p ②、运行 docker run --detach \ --hostname localhost \ --publish 4443:443 --publish 8880:80 --publish 2222:22 \ --name gitlab \ --restart always \ --volume /data/gitlab/config:/etc/gitlab \ --volume /data/gitlab/logs:/var/log/gitlab \ --volume /data/gitlab/data:/var/opt/gitlab \ gitlab/gitlab-ee:latest
docker logs -f gitlab ③、优化内存占用 如果配置够高,任性的可以不用优化,跳过即可
vim /data/gitlab/gitlab.rb Ⅰ、更改内存限制设置
Ⅱ、减少数据库缓存
Ⅲ、减少数据库并发数
④、访问测试
firewall-cmd --zone=public --add-port=8880/tcp --permanent firewall-cmd --zone=public --add-port=4443/tcp --permanent firewall-cmd --zone=public --add-port=2222/tcp --permanent
ip addr
三、初始化GitLab①、登录
docker exec -it gitlab grep 'Password:' /etc/gitlab/initial_root_password
②、创建工程
③、安装Git yum install git git version 2.27.0 ④、拉取项目 git clone http://localhost:8880/root/customproject.git ⑤、测试推送更改到远程 cd customproject/touch test.txtgit add test.txt git commit -m 'test push'git push origin main ⑥、创建自己的账号
到此这篇关于基于CentOS8系统使用Docker搭建Gitlab教程的文章就介绍到这了,更多相关Docker搭建Gitlab内容请搜索极客世界以前的文章或继续浏览下面的相关文章希望大家以后多多支持极客世界! |
请发表评论