溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Docke中如何搭建gitlab

發(fā)布時(shí)間:2022-04-20 16:43:38 來源:億速云 閱讀:160 作者:iii 欄目:大數(shù)據(jù)

這篇文章主要介紹了Docke中如何搭建gitlab的相關(guān)知識(shí),內(nèi)容詳細(xì)易懂,操作簡單快捷,具有一定借鑒價(jià)值,相信大家閱讀完這篇Docke中如何搭建gitlab文章都會(huì)有所收獲,下面我們一起來看看吧。

gitlab介紹概述

gitlab 是一個(gè)用于倉庫管理系統(tǒng)的開源項(xiàng)目。使用git作為代碼管理工具,并在此基礎(chǔ)上搭建起來的web服務(wù)。github是公共的git倉庫,而gitlab適合于搭建企業(yè)內(nèi)部私有g(shù)it倉庫

官網(wǎng):

Docke中如何搭建gitlab

前端:nginx,用于頁面及git tool走h(yuǎn)ttp或https協(xié)議
后端:gitlab服務(wù),采用ruby on rails框架,通過unicorn實(shí)現(xiàn)后臺(tái)服務(wù)及多進(jìn)程
sshd:開啟sshd服務(wù),用于用戶上傳ssh key進(jìn)行版本克隆及上傳。注:用戶上傳的ssh key是保存到git賬戶中
數(shù)據(jù)庫:目前僅支持mysql和postgresql
redis:用于存儲(chǔ)用戶session和任務(wù),任務(wù)包括新建倉庫、發(fā)送郵件等等
sidekiq:rails框架自帶的,訂閱redis中的任務(wù)并執(zhí)行

搭建流程

1.創(chuàng)建虛擬機(jī)

復(fù)制代碼 代碼如下:


docker-machine create --driver virtualbox --virtualbox-cpu-count 4 --virtualbox-memory 3072 dev-gitlab

2.配置虛擬機(jī)的加速器

docker-machine ssh dev-gitlab

sudo sed -i "s|extra_args='|extra_args='--registry-mirror=http://6cade60d.m.daocloud.io |g" /var/lib/boot2docker/profile

exit

docker-machine restart dev-gitlab

3.下載redis,postgresql,gitlab鏡像

docker pull sameersbn/redis

docker pull sameersbn/postgresql

docker pull sameersbn/gitlab

4.執(zhí)行上面鏡像生成容器( \ 為換行符展現(xiàn),實(shí)際上去掉 \ 一行執(zhí)行)

# 生成postgresql鏡像容器

docker run --name postgresql -d \
-e 'db_name=gitlabhq_production' \
-e 'db_user=gitlab' \
-e 'db_pass=password' \
-e 'db_extension=pg_trgm' \
-v /home/docker/opt/postgresql/data:/var/lib/postgresql \
sameersbn/postgresql
# 生成redis鏡像容器

docker run --name redis -d \
-v /home/docker/opt/redis/data:/var/lib/redis \
sameersbn/redis
# 生成redis鏡像容器
# 注意: gitlab_host為虛擬機(jī)分配的地址

docker run --name gitlab -d \
--link postgresql:postgresql --link redis:redisio \
-p 10022:22 -p 10080:80 \
-e 'gitlab_port=10080' \
-e 'gitlab_ssh_port=10022' \
-e 'gitlab_secrets_db_key_base=long-and-random-alpha-numeric-string' \
-e 'gitlab_secrets_secret_key_base=long-and-random-alpha-numeric-string' \
-e 'gitlab_secrets_otp_key_base=long-and-random-alpha-numeric-string' \
-e 'gitlab_host=192.168.99.100' \
-e 'gitlab_email=xiahl0916@163.com' \
-e 'smtp_enabled=true' \
-e 'smtp_domain=www.163.com' \
-e 'smtp_host=smtp.163.com' \
-e 'smtp_starttls=false' \
-e 'smtp_user=郵箱地址' \
-e 'smtp_pass=郵箱密碼' \
-e 'smtp_authentication=login' \
-e 'gitlab_backup_schedule=daily' \
-e 'gitlab_backup_time=00:30' \
-v /home/docker/opt/gitlab/data:/home/git/data -m 2048m --memory-swap=-1 \
sameersbn/gitlab

關(guān)于“Docke中如何搭建gitlab”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對“Docke中如何搭建gitlab”知識(shí)都有一定的了解,大家如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI