9

我不知道如何在 Ubuntu 上安装带有 Virtualbox 和 Vagrant 的 Gitlab。我完全迷失了,从在线研究中一无所获。

请帮我..

谢谢并恭祝安康。

4

2 回答 2

12

亚搏体育app首席执行官在这里。您可以在您的虚拟机中安装 Omnibus 包,这是 2 分钟的工作,请参阅https://about.gitlab.com/downloads/

如果您想自动安装 Omnibus 包,则在https://about.gitlab.com/installation/上列出了一个社区 Vagrant 选项

不再支持也不推荐使用说明书或 virtualbox 映像。

于 2014-02-26T21:51:36.753 回答
7

您不需要从头开始执行此操作,只需使用提供的 Gitlab Virtualbox 映像即可。

参考https://github.com/gitlabhq/gitlabhq/wiki/VirtualBox-Image

下载可在http://minus.com/m55CpmY6C/找到的 Virtualbox 映像。

使用 vagrant 访问虚拟机:

vagrant box add gitlab /path/to/the/GITLAB-UBUNTU-SERVER-10.04-I386.box
vagrant init gitlab
vagrant up

在流浪文件中:

Vagrant::Config.run do |config|
  config.vm.box = "gitlab"
  config.vm.network :hostonly, "33.33.33.10"
end

登录 vagrant:

vagrant ssh

重启和升级 Gitlab Web 服务器:

cp gitlabhq/config/gitlab.yml{.example,}
cp gitlabhq/config/database.yml{.example,}
./restart_and_upgarde_gitlabhq

这将启动 Gitlab 服务器,您可以登录到 Gitlab 网站:http://33.33.33.10

GitLab 管理员登录已经使用用户名“admin@local.host”和密码“5iveL!fe”设置。

于 2012-09-04T06:48:00.327 回答