docker 安装gitlab

2020-10-29  本文已影响0人  proud2008

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
上一篇下一篇

猜你喜欢

热点阅读