[Curl script] Repository of older gitlab versions

Hello,

For some reasons, i wish to install the following packet (without using wget) : gitlab-ce.8.15.0-ce_0

In order to do that, I executed the script able to install the repository with versions of gitlab-ce using curl -s https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.deb.sh | sudo bash

But the version 8.15.0 I need to install is not available using this script. I was wondering, is any other script available that provides older versions (mine included) of gitlab ?

Thank you very much !

Hello @WhiteRose

All GitLab community edition packages are available at URL=“https://packages.gitlab.com/gitlab/gitlab-ce” . You may use below command to install the required version.

yum install https://packages.gitlab.com/gitlab/gitlab-ce/packages/el/6/gitlab-ce-8.15.0-ce.0.el6.x86_64.rpm/download.rpm

You may verify the installed version using below command.

[root@example gitlab_data]# rpm -qa | grep gitlab
gitlab-ce-8.15.0-ce.0.el6.x86_64

Thanks,
Kiran