简体   繁体   English

Docker + SSH + Git 克隆问题

[英]Docker + SSH + Git Clone Issue

I have read so many issues about the same exact thing tonight, but I'll be damned if any of the solutions actually worked for.今晚我已经阅读了很多关于同一件事的问题,但是如果任何解决方案真的有效,我会被诅咒。

Simply put, I need to clone a private Git repo hosted on GitHub to my docker image.简而言之,我需要将托管在 GitHub 上的私有 Git 存储库克隆到我的 docker 映像。

This is what I have thus far in the Dockerfile:这是我迄今为止在 Dockerfile 中的内容:

FROM debian:wheezy
ENV DEBIAN_FRONTEND noninteractive

# Update aptitude with new repo
RUN apt-get update

# Install software 
RUN apt-get install -y \ 
    # All of my packages here...

# Make ssh dir
RUN mkdir /root/.ssh/

# Copy over private key, and set permissions
ADD ssh/id_rsa /root/.ssh/id_rsa
RUN chmod 700 /root/.ssh/id_rsa
RUN touch /root/.ssh/known_hosts

# Add GithHubs key
RUN ssh-keyscan -T 60 github.com >> /root/.ssh/known_hosts

# Create the Development directory and then move into the directory.
RUN mkdir -p /var/www/dev
WORKDIR /var/www/dev

# Start-up Git and pull in the Dev branch.
RUN ssh -v git@github.com
#RUN git init
#RUN git remote add origin git@github.com:<my_git_repo>
#RUN git fetch
#RUN git checkout -t origin/dev
#RUN git clone git@github.com:<my_git_repo>

ssh -v gives me the following debug log: ssh -v给了我以下调试日志:

OpenSSH_6.0p1 Debian-4+deb7u4, OpenSSL 1.0.1e 11 Feb 2013
Pseudo-terminal will not be allocated because stdin is not a terminal.
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 19: Applying options for *
debug1: Connecting to github.com [192.30.252.131] port 22.
debug1: Connection established.
debug1: permanently_set_uid: 0/0
debug1: identity file /root/.ssh/id_rsa type -1
debug1: identity file /root/.ssh/id_rsa-cert type -1
debug1: identity file /root/.ssh/id_dsa type -1
debug1: identity file /root/.ssh/id_dsa-cert type -1
debug1: identity file /root/.ssh/id_ecdsa type -1
debug1: identity file /root/.ssh/id_ecdsa-cert type -1
debug1: Remote protocol version 2.0, remote software version libssh-0.7.0
debug1: no match: libssh-0.7.0
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_6.0p1 Debian-4+deb7u4
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client aes128-ctr hmac-sha1 none
debug1: kex: client->server aes128-ctr hmac-sha1 none
debug1: sending SSH2_MSG_KEX_ECDH_INIT
debug1: expecting SSH2_MSG_KEX_ECDH_REPLY
debug1: Server host key: RSA 16:27:ac:a5:76:28:2d:36:63:1b:56:4d:eb:df:a6:48
debug1: Host 'github.com' is known and matches the RSA host key.
debug1: Found key in /root/.ssh/known_hosts:1
Warning: Permanently added the RSA host key for IP address '192.30.252.131' to the list of known hosts.
debug1: ssh_rsa_verify: signature correct
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug1: SSH2_MSG_NEWKEYS received
debug1: SSH2_MSG_SERVICE_REQUEST sent
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue: publickey
debug1: Next authentication method: publickey
debug1: Trying private key: /root/.ssh/id_rsa
debug1: key_parse_private_pem: PEM_read_PrivateKey failed
debug1: read PEM private key done: type <unknown>
debug1: read_passphrase: can't open /dev/tty: No such device or address
debug1: Trying private key: /root/.ssh/id_dsa
debug1: Trying private key: /root/.ssh/id_ecdsa
debug1: No more authentication methods to try.
Permission denied (publickey).

I have tried the option of setting StrictHostChecking to no.我已经尝试将 StrictHostChecking 设置为 no 的选项。 I have tried a separate config file under the SSH directory to specify host, port, identityfile (being the private key, not the public one).我在 SSH 目录下尝试了一个单独的配置文件来指定主机、端口、身份文件(作为私钥,而不是公钥)。

What am I missing here?我在这里缺少什么? The key on the VM that is created is precisely the same as what I have on my local machine.创建的 VM 上的密钥与我在本地计算机上的密钥完全相同。

It might be better to use a GitHub personal access token instead of your ssh key.使用 GitHub 个人访问令牌而不是 ssh 密钥可能会更好。

https://help.github.com/articles/creating-an-access-token-for-command-line-use/ https://help.github.com/articles/creating-an-access-token-for-command-line-use/

This removes the need for you to bake your ssh key into the image, which is more secure, and it allows clones over https, which should simplify your dockerfile.这消除了您将 ssh 密钥烘焙到映像中的需要,这更安全,并且允许通过 https 进行克隆,这应该会简化您的 dockerfile。 If you need to revoke the token, it is easy to do from their website, and you don't need to replace your personal ssh key everywhere.如果您需要撤销令牌,可以从他们的网站轻松完成,而且您无需到处更换您的个人 ssh 密钥。

If you looked at this, and can't use this option, let me know and I can help you figure out the ssh key issue.如果您查看了此内容,但无法使用此选项,请告诉我,我可以帮助您解决 ssh 密钥问题。

One of the problems could be that the .ssh/config file needs to have specific permissions.问题之一可能是.ssh/config文件需要具有特定权限。 Trying using permissions 600 ie rw- --- --- instead of 700 ie rwx --- --- .尝试使用权限600 ie rw- --- ---而不是700 ie rwx --- ---

Tip for debugging调试提示

You can try to execute the following inside the container to make sure that the setup works:您可以尝试在容器内执行以下操作以确保设置有效:

ssh -T git@github.com

If everything is setup properly, you should see:如果一切设置正确,您应该看到:

Hi username! You've successfully authenticated, but GitHub does not provide shell
access.

Alternate Strategy for Cloning Private Repositories克隆私有存储库的替代策略

When it comes cloning private repositories inside docker, I use the ssh agent session on the local host inside the container, by mounting the relevant socket.当在 docker 中克隆私有存储库时,我通过安装相关套接字在容器内的本地主机上使用 ssh 代理会话。 Details can be found here: https://ahmadnazir.github.io/posts/2016-06-24-accessing-private-repos-in-docker.html详细信息可以在这里找到: https : //ahmadnazir.github.io/posts/2016-06-24-accessing-private-repos-in-docker.html

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM