共计 1961 个字符,预计需要花费 5 分钟才能阅读完成。
公司要搭建基于开源项目 GitLab 开发的在线代码托管平台,方便管理、测试、staging、服务器部署。在 CentOS7 上边单独搭建的话,按照官网的教程挺简单的。至于配置方面确实挺复杂的,单独的一台服务器又有点舍不得。
操作系统
虚拟机 VMware Player 下安装 CentOS-7-x86_64-Minimal-1503-01.iso
安装完成后:联网状态下安装 base 包 yum groupinstall base
安装 Docker
#sudo yum install docker // 安装的版本 1.8.2
下载镜像
#docker pull sameersbn/gitlab:8.2.2
#docker pull sameersbn/redis:latest
#docker pull sameersbn/postgresql:9.4-8
启动 Redis
docker run --name gitlab-redis -d \
--volume /srv/docker/gitlab/redis:/var/lib/redis \
sameersbn/redis:latest
启动 postgresql
docker run --name gitlab-postgresql -d \
--env 'DB_NAME=gitlabhq_production' \
--env 'DB_USER=gitlab' --env 'DB_PASS=password' \
--volume /srv/docker/gitlab/postgresql:/var/lib/postgresql \
sameersbn/postgresql:9.4-8
启动 GitLab
docker run --name gitlab -d \
--link gitlab-postgresql:postgresql --link gitlab-redis:redisio \
--publish 10022:22 --publish 10080:80 \
--env 'GITLAB_PORT=10080' --env 'GITLAB_SSH_PORT=10022' \
--env 'GITLAB_SECRETS_DB_KEY_BASE=long-and-random-alpha-numeric-string' \
--volume /srv/docker/gitlab/gitlab:/home/git/data \
sameersbn/gitlab:8.2.2
WEB 访问
访问地址:http:// 地址:10080
默认账号:root/5iveL!fe。登录进去后,修改密码。
实验发现使用 Docker 确实不怎么占用硬盘和内存。
问题与解答
1、启动容器 iptables 报 No chain/target/match by that name。如下图
解答:
#yum install iptables-services
// 禁用了 iptables。分别为开机关闭和服务关闭
#chkconfig iptables off
#service iptables stop
#systemctl restart iptables.service
更多 GitLab 相关教程见以下内容:
Ubuntu 14.04 下安装 GitLab 指南 http://www.linuxidc.com/Linux/2015-12/126876.htm
如何在 Ubuntu Server 14.04 下安装 Gitlab 中文版 http://www.linuxidc.com/Linux/2015-12/126875.htm
CentOS 源码安装 GitLab 汉化版 http://www.linuxidc.com/Linux/2015-10/124648.htm
在 Ubuntu 12.04 上安装 GitLab http://www.linuxidc.com/Linux/2012-12/75249.htm
GitLab 5.3 升级注意事项 http://www.linuxidc.com/Linux/2013-06/86473.htm
在 CentOS 上部署 GitLab (自托管的 Git 项目仓库) http://www.linuxidc.com/Linux/2013-06/85754.htm
在 RHEL6/CentOS6/ScientificLinux6 上安装 GitLab 6.0.2 http://www.linuxidc.com/Linux/2014-03/97831.htm
CentOS 6.5 安装 GitLab 教程及相关问题解决 http://www.linuxidc.com/Linux/2014-05/101526.htm
GitLab 的详细介绍:请点这里
GitLab 的下载地址:请点这里
本文永久更新链接地址:http://www.linuxidc.com/Linux/2016-06/131995.htm