为了账号安全,请及时绑定邮箱和手机立即绑定

docker安装使用gitlab

标签:
Docker

1、安装docker

可参考:https://www.jianshu.com/p/270020e5b313

2、自定义 docker 的默认运行目录和镜像仓库地址(可跳过)

docker镜像地址选用阿里云


webp

image.png

vim /etc/docker/daemon.json

添加

{  "graph":"/opt/docker",  "registry-mirrors": ["https://xxxxxx.mirror.aliyuncs.com"]
}

重启

systemctl restart docker

查看

docker info

webp

image.png

3、下载docker镜像

docker pull gitlab/gitlab-ce:latest

4、开放阿里云安全组端口、配置防火墙(8443、880、822)

docker run -d \
    --publish 8443:443 --publish 880:80 --publish 822:22 \
    --name gitlab \
    --volume /opt/gitlab/config:/etc/gitlab \
    --volume /opt/gitlab/logs:/var/log/gitlab \
    --volume /opt/gitlab/data:/var/opt/gitlab \
    gitlab/gitlab-ce

5、登陆gitlab

http://ip:880/users/sign_in(需要等待几分钟,待gitlab启动完成)

6、注意点

http:

将 http://954a3593a13b/hsshy/guns-parent.git 中的954a3593a13b改为你的ip加端口git clone http://ip:880/hsshy/guns-parent.git

ssh:
到.ssh目录下生成公钥私钥

ssh-keygen -t rsa -C "your.email@example.com" -b 4096

将id_rsa.pub的内容复制到


webp

image.png


webp

image.png


webp

image.png

将 git@954a3593a13b:hsshy/guns-parent.git 中的 954a3593a13b:hsshy 改成 ip:822/hsshy
git clone ssh://git@ip:822/hsshy/guns-parent.git



作者:yellow_han
链接:https://www.jianshu.com/p/28e0c4c3be4e


点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消