返回
Featured image of post GitLab - macos 安裝

GitLab - macos 安裝

GitLab 學習筆記

環境變數添加

.zshrc 添加 $GITLAB_HOME 環境變數

export GITLAB_HOME=$HOME/gitlab

環境安裝

sudo docker run --detach \
  --hostname gitlab.example.com \
  --publish 443:443 --publish 80:80 --publish 22:22 \
  --name gitlab \
  --restart always \
  --volume $GITLAB_HOME/config:/etc/gitlab \
  --volume $GITLAB_HOME/logs:/var/log/gitlab \
  --volume $GITLAB_HOME/data:/var/opt/gitlab \
  gitlab/gitlab-ee:latest

相對應的路由

local pathvolumemethod
$GITLAB_HOME/data/var/opt/gitlab用於存儲應用程序數據。
$GITLAB_HOME/logs/var/log/gitlab用於存儲日誌。
$GITLAB_HOME/config/etc/gitlab用於存儲GitLab配置文件。
Licensed under CC BY-NC-SA 4.0
comments powered by Disqus