docker搭建gitlab
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了docker搭建gitlab相关的知识,希望对你有一定的参考价值。
docker搭建gitlab在服务器上直接安装gitlab,会装入Git,Redis ,postgresql,nginx等。如果主机已有redis、nginx等,配置会比较麻烦。而且以后gitlab的备份和迁移都不方便。附主机安装教程:
https://about.gitlab.com/downloads/#centos7
https://mirror.tuna.tsinghua.edu.cn/help/gitlab-ce/12
如果将gitlab进行Docker化部署,所有服务如redis,postgresql等放在一个docker容器里,将配置、数据等文件挂载在宿主机上,备份和迁移时候只要复制docker镜像和挂载的数据目录即可。
运行gitlab容器
#查找镜像
[[email protected] ~]# docker search gitlab
INDEX NAME DESCRIPTION STARS OFFICIAL AUTOMATED
docker.io docker.io/gitlab/gitlab-ce GitLab Community Edition docker image base... 946 [OK]
docker.io docker.io/sameersbn/gitlab Dockerized gitlab web server 803 [OK]
docker.io docker.io/gitlab/gitlab-runner 143 [OK]
docker.io docker.io/gitlab/gitlab-ee GitLab Enterprise Edition docker image bas... 47 # 拉取镜像
docker pull docker.io/gitlab/gitlab-ce
# 启动镜像(使用桥接网络启动docker)
docker run --detach --publish 9443:443 --publish 9080:80 --publish 9022:22 --name gitlab --restart always --volume /app/gitlab/config:/etc/gitlab --volume /app/gitlab/logs:/var/log/gitlab --volume /app/gitlab/data:/var/opt/gitlab gitlab/gitlab-ce
浏览器打开http://132.97.xxx.xxx:9080 即可访问到gitlab
gitlab初始用户名/密码:
username: root
password: 5iveL!fe
以上是关于docker搭建gitlab的主要内容,如果未能解决你的问题,请参考以下文章
使用docker搭建gitlab版本控制系统
Docker搭建Gitlab代码管理平台
Docker下搭建gitlab
使用Docker部署Gitlab
Docker Compose部署GitLab服务,搭建自己的代码托管平台(图文教程)
基于docker搭建Jenkins+Gitlab+Harbor+Rancher架构实现CI/CD操作