Skip to content

Instantly share code, notes, and snippets.

@tacck
Created March 15, 2014 13:21
Show Gist options
  • Save tacck/9567096 to your computer and use it in GitHub Desktop.
Save tacck/9567096 to your computer and use it in GitHub Desktop.
Vagrant内のCentOS 6.5にGitLab Omnibusをインストールしてみた話 ref: http://qiita.com/tacck/items/d025f02e1db656a6fc66
config.vm.network "forwarded_port", guest: 80, host: 8000
% curl -o gitlab-6.6.5_omnibus-1.el6.x86_64.rpm https://downloads-packages.s3.amazonaws.com/gitlab-6.6.5_omnibus-1.el6.x86_64.rpm
% sudo yum install openssh-server
% sudo yum install postfix
% sudo rpm -i gitlab-6.6.5_omnibus-1.el6.x86_64.rpm
% sudo mkdir /etc/gitlab
% sudo vi /etc/gitlab/gitlab.rb
% sudo gitlab-ctl reconfigure
% sudo gitlab-ctl start
User: [email protected]
Password: 5iveL!fe
external_url "http://localhost"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment