gitlab环境及配置

# 安装

1、安装镜像

docker pull gitlab/gitlab-ce
1

2、启动容器

sudo docker run -d \
    --hostname xxxx.xxxx.xx \
    --name gitlab \
    --restart always \
    --publish 30001:22 --publish 30000:80 --publish 30002:443 \
    --volume $HOME/gitlab/data:/var/opt/gitlab \
    --volume $HOME/gitlab/logs:/var/log/gitlab \
    --volume $HOME/gitlab/config:/etc/gitlab \
    gitlab/gitlab-ce
1
2
3
4
5
6
7
8
9
上次更新: 2022/04/15, 05:41:30
×