我不知道如何在Ubuntu上安装带有Virtualbox和Vagrant的Gitlab。我完全迷失了,并且从在线研究中得不到任何东西。
请帮助我..
谢谢和问候。
答案 0 :(得分:12)
GitLab首席执行官。您只需在虚拟机中安装Omnibus软件包,这是2分钟的工作,请参阅https://about.gitlab.com/downloads/
如果您想自动安装Omnibus软件包,https://about.gitlab.com/installation/上列出了社区Vagrant选项
不再支持或推荐使用cookbook或virtualbox图像。
答案 1 :(得分:6)
您无需从头开始执行此操作,只需使用提供的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文件中:
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服务器,您可以http://33.33.33.10
已经设置了GitLab管理员登录名,用户名为“admin@local.host”,密码为“5iveL!fe”。