環境變數添加
至 .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 path | volume | method |
---|---|---|
$GITLAB_HOME/data | /var/opt/gitlab | 用於存儲應用程序數據。 |
$GITLAB_HOME/logs | /var/log/gitlab | 用於存儲日誌。 |
$GITLAB_HOME/config | /etc/gitlab | 用於存儲GitLab配置文件。 |