如下內容來自:https://mirror.tuna.tsinghua.edu.cn/help/gitlab-ce/ (清華大學開源軟件鏡像站)
能夠直接移步上面的網站。這裏作個筆記,也是爲了記錄一下上面的那個鏡像網站。git
下載gitlab以前須要安裝其餘的軟件。ubuntu
sudo apt-get install curl openssh-server ca-certificates postfix
首先信任 GitLab 的 GPG 公鑰:vim
curl https://packages.gitlab.com/gpg.key 2> /dev/null | sudo apt-key add - &>/dev/null
vim /etc/apt/sources.list.d/gitlab-ce.list
將下面的內容添加進上面的 gitlab-ce.listssh
deb https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/ubuntu trusty main
安裝 gitlab-ce:curl
sudo apt-get update sudo apt-get install gitlab-ce
這樣gitlab就安裝完成了。配置文件是 /etc/gitlab/gitlab.rb。最重要的一個是external_url 換成本身的域名。具體的配置還得搜。
配置完成後使配置生效。gitlab
sudo gitlab-ctl reconfigure
下面的命令重啓post
sudo gitlab-ctl restart
啓動後直接輸入配置的域名便可訪問,默認的端口80。網站