devops 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 下载了。