- 一、环境
- 二、安装步骤
- 三、使用
- 四、500问题的解决
- 参考
一、环境
linux:centos7
docker:18.06.3-ce
gitlab: twang2218/gitlab-ce-zh(汉化的 GitLab 社区版)
二、安装步骤
-
配置镜像加速器(如果已配置这步可略过),打开/etc/docker/daemon.json文件:
[root@localhost docker]# vi /etc/docker/daemon.json
配置如下,这里配置的是网易的docker镜像仓库,用别的也行。
{"registry-mirrors": ["http://hub-mirror.c.163.com"]}
配置完后:wq保存配置并重启docker
[root@localhost docker]# service docker restart
-
查找镜像并拉取镜像
[root@localhost docker]# docker search gitlab [root@localhost docker]# docker pull twang2218/gitlab-ce-zh [root@localhost docker]# docker images
拉取成功后使用docker images就可以看到刚刚拉取的镜像
-
创建挂载的目录,将gitlab容器的日志文件、数据文件、配置文件挂载到外部
[root@localhost docker]# mkdir -p /docker/gitlab/config [root@localhost docker]# mkdir -p /docker/gitlab/logs [root@localhost docker]# mkdir -p /docker/gitlab/data
-
创建容器
docker run --detach --hostname 192.168.200.128 --publish 8443:443 --publish 8080:80 --publish 2222:22 --name gitlab --restart always --volume /docker/gitlab/config:/etc/gitlab --volume /docker/gitlab/logs:/var/log/gitlab --volume /docker/gitlab/data:/var/opt/gitlab twang2218/gitlab-ce-zh
--hostname 192.168.200.128 :指定主机的ip或者域名
--publish 8443:443:主机的8443端口与gitlab容器的443端口隐射
--publish 8080:80 :主机的8080端口与gitlab容器的80端口隐射
--publish 2222:22 :主机的2222端口与gitlab容器的22端口隐射
-
配置ssh连接
ssh连接默认使用的是22端口所以要改一下配置
修改/docker/gitlab/config/gitlab.rb下的gitlab.rb文件
[root@localhost docker]# vi /docker/gitlab/config/gitlab.rb
将gitlab_rails['gitlab_shell_ssh_port']变量的22为2222
# gitlab_rails['gitlab_shell_ssh_port'] = 2222
三、使用
- 访问gitlab:输入 http://192.168.200.128:8080/ 即可访问到gitlab的登录界面
-
修改root密码(第一次登录需要修改)
-
注册账号登录即可
-
ssh连接和http连接的url需要改一下,不然连不上(重要).从下图复制的链接是少了端口号的。
ssh:
ssh://[email protected]:2222/heliufang/test.git
[email protected]:heliufang/test.git
http:
http://192.168.200.128:8080/heliufang/test.git
四、500问题的解决
1.多等一会,再访问
2.加大内存,4g以上内存,一般不会出现奇怪的问题
3.还不行可以装替代品gitblit,这个可以用war包部署,安装比gitlab方便,兼容性强(可在linux和windows上部署)
gitblit的安装参考:https://www.cnblogs.com/helf/p/12894180.html
参考
https://www.cnblogs.com/xuezhigu/p/6555895.html
https://blog.csdn.net/yaodunlin/article/details/87777780
https://www.jianshu.com/p/247b5e608b5b