четверг, 27 декабря 2018 г.

Установка GitLab Ubuntu 17.10 и решение проблемы Unable to locate package gitlab-ce

В данной инструкции устанавливается GitLab Community Edition на Ubuntu 17.10

1.  Добавляем репозитории GitLab.

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

2. Редактируем: /etc/apt/sources.list.d/gitlab_gitlab-ce.list
Меняем OLD на NEW

OLD
deb https://packages.gitlab.com/gitlab/gitlab-ce/ubuntu/ zesty main
deb-src https://packages.gitlab.com/gitlab/gitlab-ce/ubuntu/ zesty main

NEW
deb https://packages.gitlab.com/gitlab/gitlab-ce/ubuntu/ xenial main
deb-src https://packages.gitlab.com/gitlab/gitlab-ce/ubuntu/ xenial main

3. Обновляем список репозитории
  sudo apt-get update

4. Установка Gitlab.
  sudo apt-get install gitlab-ce

1 комментарий: