gitlab使用docker-compose启动配置ssh-key

因为是采用 docker-compose 启动的 gitlab,所以于 gitlab 的 ssh 端口是 30022,而不是 22。所以需要如下配置才可以不报错

1
2
3
4
5
6
vim ~/.ssh/config
Host 192.168.1.100
HostName 192.168.1.100
Port 2222
PreferredAuthentications
publickey IdentityFile ~/.ssh/id_rsa

配置好后,就可以 git clone 下载了。

Licensed under CC BY-NC-SA 4.0
最后更新于 Jan 06, 2025 05:52 UTC
comments powered by Disqus
Built with Hugo
主题 StackJimmy 设计
Caret Up