docker 安装gitlab 16.1.2-jh_gitlab
时间: 2023-11-21 21:54:16 浏览: 181
根据提供的引用内容,可以使用Docker容器镜像的方式安装GitLab 16.1.2-jh_gitlab。具体步骤如下:
1. 执行以下指令,设置GitLab的安装路径:
```
export GITLAB_HOME=/srv/gitlab
```
2. 执行以下指令,使用容器镜像安装GitLab:
```
sudo docker run --detach \
--hostname gitlab.example.com \
--publish 443:443 --publish 80:80 --publish 1022: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 \
--shm-size 256m \
registry.gitlab.cn/omnibus/gitlab-jh:latest
```
其中,`--hostname`参数指定GitLab的主机名,`--publish`参数指定GitLab的端口映射,`--name`参数指定容器的名称,`--volume`参数指定GitLab的配置文件、日志文件和数据文件的挂载路径,`--shm-size`参数指定共享内存的大小,`registry.gitlab.cn/omnibus/gitlab-jh:latest`指定使用的GitLab容器镜像。
阅读全文