What is Gitlab?
Gitlab is a collaborative software development and version control web service based on Git. In addition to repository management, the service also offers hosting of wikis and a bug tracking system, all published under a Open source license.
We install the dependencies
Bash
sudo apt-get update
sudo apt-get install -y curl openssh-server ca-certificatesWe install postfix
Bash
sudo apt-get install -y postfixWe added the Gitlab repository
Bash
curl https://packages.gitlab.com/install/repositories/gitlab/gitlab-ee/script.deb.sh | sudo bashWe install the package
Bash
sudo EXTERNAL_URL=»http://gitlab.red-orbita.es» apt-get install gitlab-eeWe configure the service
gitlab-ctl reconfigure
we start the service
text
gitlab-ctl startOnce configured we access through our browser http://gitlab.red-orbita.es
:wq!
Comments