目录
概述
gitlab可以去 hub 上拉取最新版本,在此我选择汉化 gitlab
,版本 11.x
离线资源
想自制离线安装镜像,请稳步参考 docker镜像的导入导出 ,无兴趣的直接使用在此提供离线资源 百度网盘(链接: https://pan.baidu.com/s/1xfvsFKP3pwwU_g46SBRWOw 提取码: v2py )。
docker-compose
docker-compose.yml
yaml
version: '3'
services:
web:
image: 'twang2218/gitlab-ce-zh:latest'
restart: always
hostname: '10.xx.xx.142'
environment:
TZ: 'Asia/Shanghai'
GITLAB_OMNIBUS_CONFIG: |
external_url 'http://10.xx.xx.142:8088'
gitlab_rails['gitlab_shell_ssh_port'] = 2222
unicorn['port'] = 8888
nginx['listen_port'] = 8088
ports:
- '8088:8088'
- '7443:443'
- '2222:22'
volumes:
- /root/gitlab/config:/etc/gitlab
- /root/gitlab/data:/var/opt/gitlab
- /root/gitlab/logs:/var/log/gitlab
结束
后续会补充 gitlab 的 cicd
进行说明。