Выполним установку и настройку Gitlab Community Edition через установку Omnibus-пакета 1. Установка зависимостей для Gitlab-пакета с предварительным обновлением локального кеша пакетов
1 |
# apt-get update && apt-get install curl openssh-server ca-certificates postfix |
2. Добавление Gitlab репозитария, из которого будет установлен пакет Gitlab Community Edition
1 |
# curl -L -o /tmp/script.deb.sh https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.deb.sh |
1 |
# bash /tmp/script.deb.sh |
3. Установка Gitlab
1 |
# apt-get install gitlab-ce -y |
1 2 3 4 5 6 7 8 9 |
Thank you for installing GitLab! GitLab was unable to detect a valid hostname for your instance. Please configure a URL for your GitLab instance by setting `external_url` configuration in /etc/gitlab/gitlab.rb file. Then, you can start your GitLab instance by running the following command: sudo gitlab-ctl reconfigure For a comprehensive list of configuration options please see the Omnibus GitLab readme https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/README.md |
4. Настройка домен/урл по которому будет доступен Gitlab снаружи Если не […]