gitlab docker

1.  docker pull gitlab/gitlab-ce

2. docker run -p 8080:80 -name gitlab gitlab/gitlab-ce

3.以上2步都比较费时间

访问 http://host:8080 打开gitlab

输入root 用户的初始化密码

4. 登录

新建一个仓库 test

5. 本地的代码

git  remote add origin http://host:8080/root/test.git

git push --set-upstream origin test

可以看到代码已经上传到远程了。

 

相关文章

Docker是什么Docker是 Docker.Inc 公司开源的一个基于 LXC技...
本文为原创,原始地址为:http://www.cnblogs.com/fengzheng...
镜像操作列出镜像:$ sudo docker imagesREPOSITORY TAG IMA...
本文原创,原文地址为:http://www.cnblogs.com/fengzheng/p...
在 Docker 中,如果你修改了一个容器的内容并希望将这些更改...
在Docker中,--privileged 参数给予容器内的进程几乎相同的权...