Home Linux & Systems Cybersecurity Cloud & DevOps Networks & Infrastructure SIEM & Monitoring DFIR & Threat Intel Development & Other All categories Projects About Tools

Install gitlab on Debian

Leer en espanol
Install gitlab on Debian

Table of contents

Gitlab is a collaborative software development and version control web service based on Git. In addition to repository management, the service also offers wiki hosting ===

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-certificates

We install postfix

Bash
sudo apt-get install -y postfix

We added the Gitlab repository

Bash
curl https://packages.gitlab.com/install/repositories/gitlab/gitlab-ee/script.deb.sh | sudo bash

We install the package

Bash
sudo EXTERNAL_URL=»http://gitlab.red-orbita.es» apt-get install gitlab-ee

We configure the service

gitlab-ctl reconfigure

we start the service

text
gitlab-ctl start

Once configured we access through our browser http://gitlab.red-orbita.es

:wq!

Comments