目录
官方文档
1、Docker部署GitLab
设置存储位置变量
export GITLAB_HOME=/root/container/gitlab
启动容器
sudo docker run --detach \
--hostname 172.21.0.13 \
--publish 443:443 --publish 80:80 --publish 22:22 \
--name gitlab \
--restart always \
--volume $GITLAB_HOME/config:/etc/gitlab:Z \
--volume $GITLAB_HOME/logs:/var/log/gitlab:Z \
--volume $GITLAB_HOME/data:/var/opt/gitlab:Z \
--shm-size 256m \
registry.gitlab.cn/omnibus/gitlab-jh:latest
gitlab初始化需要稍微等待一会~ 可以使用 `sudo docker logs -f gitlab跟踪整个过程
sudo docker logs -f gitlab
获取密码 此密码24小时内失效
sudo docker exec -it gitlab grep 'Password:' /etc/gitlab/initial_root_password
更改密码
点击 左上角 三
> 管理员
> 用户
> 编辑
> 修改密码
2、compose部署GitLab
设置存储位置变量
export GITLAB_HOME=/root/container/gitlab
创建 docker-compose
文件
version: '3.6'
services:
web:
image: 'registry.gitlab.cn/omnibus/gitlab-jh:latest'
restart: always
hostname: '172.21.0.13'
environment:
GITLAB_OMNIBUS_CONFIG: |
external_url 'https://172.21.0.13'
ports:
- '80:80'
- '443:443'
- '22:22'
volumes:
- '$GITLAB_HOME/config:/etc/gitlab'
- '$GITLAB_HOME/logs:/var/log/gitlab'
- '$GITLAB_HOME/data:/var/opt/gitlab'
shm_size: '256m'
运行
docker-compose up -d
获取密码 此密码24小时内失效
sudo docker exec -it gitlab grep 'Password:' /etc/gitlab/initial_root_password
更改密码
点击 左上角 三
> 管理员
> 用户
> 编辑
> 修改密码