简介
GitLab CE 和 EE 的含义和区别
CE 为 Community Edition、EE 为 Enterprise Edition 使用 EE 版本但不付费时功能等同于 CE,所以推荐安装 EE 避免后期迁移
查看当前安装的 GitLab 版本和具体版本号
浏览器额直接访问 部署的 GitLab 的网址 url 加/help
,如下:
http://gitlab.example.com:8929/help
安装
官方文档:https://docs.gitlab.com/ee/install/docker.html#install-gitlab-using-docker-compose
这是使用 Docker Compose 部署,yml 文件如下:
|
|
获取 root 账号密码
官方文档中有说明:
Visit the GitLab URL, and sign in with the username root and the password from the following command:
1
sudo docker exec -it gitlab grep 'Password:' /etc/gitlab/initial_root_password
The password file will be automatically deleted in the first reconfigure run after 24 hours.
即成功部署后,通过执行给定的命令获取 root 账号密码,root 账号密码会在 24 小时后自动删除。
注意将上面命令中的 gitlab 替换为 docker-compose.yml 中的服务名或者容器名、容器 ID。
小结
总体部署是没有什么难度的,当然还有一些配置,后面再出一篇文章详细介绍。