美文网首页
docker 安装gitlab

docker 安装gitlab

作者: proud2008 | 来源:发表于2020-10-29 17:36 被阅读0次

    https://www.cnblogs.com/zhengyazhao/p/11690189.html
    https://www.jianshu.com/p/080a962c35b6

    docker 安装gitlab
    https://docs.gitlab.com/13.5/omnibus/docker/README.html
    https://hub.docker.com/r/gitlab/gitlab-ce/

    docker pull gitlab/gitlab-ce:latest
    
    docker run --detach \
    --hostname gitlab.example.com \
    --publish 443:443 --publish 80:80 --publish 22: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 \
    gitlab/gitlab-ee:latest
    #正常情况下 就可以通过ip:8083访问了
    

    ce 社区版 ee企业版

    中文版

    https://github.com/twang2218/gitlab-ce-zh

    windows 添加挂载点的问题

    image.png

    相关文章

      网友评论

          本文标题:docker 安装gitlab

          本文链接:https://www.haomeiwen.com/subject/hmkcvktx.html