首页 > 其他 > 详细

Gitlab installation

时间:2018-01-30 16:19:43      阅读:231      评论:0      收藏:0      [点我收藏+]
How to install Gitlab base on Docker:

  1. from docker:
    docker pull gitlab/gitlab-ce
  2. from Gitlab:
    sudo docker run --detach \
    --hostname gitlab.example.com \
    --publish 443:443 --publish 80:80 --publish 22:22 \
    --name gitlab \
    --restart always \
    --volume /srv/gitlab/config:/etc/gitlab \
    --volume /srv/gitlab/logs:/var/log/gitlab \
    --volume /srv/gitlab/data:/var/opt/gitlab \
    gitlab/gitlab-ce:latest
  3. please refer the details:
    https://hub.docker.com/r/gitlab/gitlab-ce/
    https://docs.gitlab.com/omnibus/docker/

Gitlab installation

原文:http://blog.51cto.com/737083/2066775

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!