- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图将私有(private) git 存储库 pull 入我的 docker 容器,我将我的 SSHKey 和下面的脚本添加到 Dockerfile 中,但不幸的是没有成功。
ENV SSH_KEY #SSHKey-Here#
# Configure git user
RUN git config --global user.email "developer@domain.com" && \
git config --global user.name "Docker Image"
# Authorize SSH Host
RUN mkdir -p /root/.ssh && \
chmod 0700 /root/.ssh && \
ssh-keyscan gitlabdomain.com > /root/.ssh/known_hosts &&\
chmod 644 /root/.ssh/known_hosts
# Add the keys and set permissions
RUN eval `ssh-agent -s` && \
echo "$SSH_KEY" > /root/.ssh/id_rsa && \
chmod 600 /root/.ssh/id_rsa
作为测试,我运行以下命令:
docker exec php-container ssh -vT git@gitlabdomain.com
我收到以下错误:
OpenSSH_6.7p1 Debian-5+deb8u4, OpenSSL 1.0.1t 3 May 2016
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 19: Applying options for *
debug1: Connecting to cgitlabdomain.com [xxx.xxx.x.xxx] port 22.
debug1: Connection established.
debug1: permanently_set_uid: 0/0
debug1: key_load_public: No such file or directory
debug1: identity file /root/.ssh/id_rsa type -1
debug1: key_load_public: No such file or directory
debug1: identity file /root/.ssh/id_rsa-cert type -1
debug1: key_load_public: No such file or directory
debug1: identity file /root/.ssh/id_dsa type -1
debug1: key_load_public: No such file or directory
debug1: identity file /root/.ssh/id_dsa-cert type -1
debug1: key_load_public: No such file or directory
debug1: identity file /root/.ssh/id_ecdsa type -1
debug1: key_load_public: No such file or directory
debug1: identity file /root/.ssh/id_ecdsa-cert type -1
debug1: key_load_public: No such file or directory
debug1: identity file /root/.ssh/id_ed25519 type -1
debug1: key_load_public: No such file or directory
debug1: identity file /root/.ssh/id_ed25519-cert type -1
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_6.7p1 Debian-5+deb8u4
debug1: Remote protocol version 2.0, remote software version OpenSSH_6.6.1p1 Ubuntu-2ubuntu2.10
debug1: match: OpenSSH_6.6.1p1 Ubuntu-2ubuntu2.10 pat OpenSSH_6.6.1* compat 0x04000000
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client aes128-ctr umac-64-etm@openssh.com none
debug1: kex: client->server aes128-ctr umac-64-etm@openssh.com none
debug1: sending SSH2_MSG_KEX_ECDH_INIT
debug1: expecting SSH2_MSG_KEX_ECDH_REPLY
debug1: Server host key: ECDSA 28:3d:da:79:af:1d:28:44:d9:dc:01:55:7e:09:4b:3d
debug1: Host 'gitlabdomain.com' is known and matches the ECDSA host key.
debug1: Found key in /root/.ssh/known_hosts:2
Warning: Permanently added the ECDSA host key for IP address '188.166.30.98' to the list of known hosts.
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,password
debug1: Next authentication method: publickey
debug1: Trying private key: /root/.ssh/id_rsa
debug1: key_load_private_type: incorrect passphrase supplied to decrypt private key
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: Trying private key: /root/.ssh/id_ed25519
debug1: Next authentication method: password
debug1: read_passphrase: can't open /dev/tty: No such device or address
debug1: Authentications that can continue: publickey,password
Permission denied, please try again.
debug1: read_passphrase: can't open /dev/tty: No such device or address
debug1: Authentications that can continue: publickey,password
Permission denied, please try again.
debug1: read_passphrase: can't open /dev/tty: No such device or address
debug1: Authentications that can continue: publickey,password
debug1: No more authentication methods to try.
Permission denied (publickey,password).
我用谷歌搜索并尝试了一些建议,但似乎无法解决这些错误,我确定 id_rsa 文件确实存在,并且其中存在我的 SSHKey,所以我不明白为什么会输出这些错误.
我们将不胜感激任何帮助、意见和/或建议。
亲切的问候,
伦纳特
最佳答案
从您的 SSH 输出来看,您似乎已经使用密码保护了您的私钥:
debug1: Trying private key: /root/.ssh/id_rsa
debug1: key_load_private_type: incorrect passphrase supplied to decrypt private key
并且未提供此密码,因此无法使用私钥。您将需要运行 ssh-add <key-file>
在容器中,并提供验证成功的密码。
我建议进行以下改进:
即使您的 docker 镜像仅供内部使用,将 ssh-keys 存储在由多个用户共享的任何系统上的镜像中也是一个坏主意。参见 this和 this .您可以改为使用传入敏感参数的 Dockerfile 创建图像:
FROM library/centos
RUN yum install -y git
ARG HOME_DIR
ARG USER_ID
RUN echo "Setting up user $USER_ID with home directory: $HOME_DIR" \
&& useradd \
--home-dir $HOME_DIR \
--uid 1000 \
$USER_DIR $USER_ID \
&& touch ${HOME_DIR}/entrypoint.sh \
&& mkdir -p ${HOME_DIR}/.ssh/ \
&& chown -R ${USER_ID}:${USER_ID} ${HOME_DIR} \
&& chmod -R 700 ${HOME_DIR}/.ssh \
&& touch ${HOME_DIR}/.ssh/id_rsa \
&& chmod 400 ${HOME_DIR}/.ssh/id_rsa \
&& chmod 777 ${HOME_DIR}/entrypoint.sh
ENTRYPOINT ${HOME_DIR}/entrypoint.sh
创建运行图像时传入的 entrypoint.sh 脚本。这将处理所有的 git 初始化:
# Setup Git Config
echo "Setting Git Config Values"
git config --global user.email "developer@domain.com" && \
git config --global user.name "Docker Image"
# Setup Git Folders
echo "Adding Host Key for Github"
cd /home/my_user/ \
&& ssh-keyscan gitlabdomain.com > /home/my_user/.ssh/known_hosts
# Add ssh-key to SSH Agent
echo "Adding SSH Key to ssh-agent" \
&& eval `ssh-agent -s` && ssh-add /home/my_user/.ssh/id_rsa
# Cloning from remote repository
git clone git@gitlabdomain.com
# Prevent container from exiting
tail -f /dev/null
然后,以交互式分离模式运行容器 - 这将允许您附加到容器并输入 ssh key 的密码。
同时将所有敏感文件挂载为只读卷,并以您的用户身份运行容器。这将确保文件只能由您访问:
my_user$ docker run \
-itd \
-e "HOME_DIR=/home/my_user" \
-e "USER_ID=my_user" \
-v /home/my_user/.ssh/id_rsa:/home/my_user/.ssh/id_rsa:ro \
-v /home/my_user/entrypoint.sh:/home/my_user/entrypoint.sh \
--user my_user \
myimage
e4985a08a0d20f39414da801e9665abb364885052047f45e2f9943e7622c696b
最后,附加到您的容器以提供 ssh-key 密码,并使用 Ctrl-P
分离, Ctrl-Q
:
myuser$ docker attach e4985a08a0d20f39414da801e9665abb364885052047f45e2f9943e7622c696b
<enter passphrase here>
Identity added: /home/my_user/.ssh/id_rsa
(/home/my_user/.ssh/id_rsa)
Cloning into 'my_repo'...
Warning: Permanently added the RSA host key for IP address 'xx.xxx.xxx.xxx' to the list of known hosts.
remote: Counting objects: 1014, done.
remote: Total 1014 (delta 0), reused 0 (delta 0), pack-reused 1014
Receiving objects: 100% (1014/1014), 3.48 MiB | 1.16 MiB/s, done.
Resolving deltas: 100% (512/512), done.
read escape sequence
或者,如果您不想附加/分离,您可以尝试从文件中传入密码。参见 this
关于git - 在 Docker 容器中 pull 私有(private) git repo,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51497325/
我需要将文本放在 中在一个 Div 中,在另一个 Div 中,在另一个 Div 中。所以这是它的样子: #document Change PIN
奇怪的事情发生了。 我有一个基本的 html 代码。 html,头部, body 。(因为我收到了一些反对票,这里是完整的代码) 这是我的CSS: html { backgroun
我正在尝试将 Assets 中的一组图像加载到 UICollectionview 中存在的 ImageView 中,但每当我运行应用程序时它都会显示错误。而且也没有显示图像。 我在ViewDidLoa
我需要根据带参数的 perl 脚本的输出更改一些环境变量。在 tcsh 中,我可以使用别名命令来评估 perl 脚本的输出。 tcsh: alias setsdk 'eval `/localhome/
我使用 Windows 身份验证创建了一个新的 Blazor(服务器端)应用程序,并使用 IIS Express 运行它。它将显示一条消息“Hello Domain\User!”来自右上方的以下 Ra
这是我的方法 void login(Event event);我想知道 Kotlin 中应该如何 最佳答案 在 Kotlin 中通配符运算符是 * 。它指示编译器它是未知的,但一旦知道,就不会有其他类
看下面的代码 for story in book if story.title.length < 140 - var story
我正在尝试用 C 语言学习字符串处理。我写了一个程序,它存储了一些音乐轨道,并帮助用户检查他/她想到的歌曲是否存在于存储的轨道中。这是通过要求用户输入一串字符来完成的。然后程序使用 strstr()
我正在学习 sscanf 并遇到如下格式字符串: sscanf("%[^:]:%[^*=]%*[*=]%n",a,b,&c); 我理解 %[^:] 部分意味着扫描直到遇到 ':' 并将其分配给 a。:
def char_check(x,y): if (str(x) in y or x.find(y) > -1) or (str(y) in x or y.find(x) > -1):
我有一种情况,我想将文本文件中的现有行包含到一个新 block 中。 line 1 line 2 line in block line 3 line 4 应该变成 line 1 line 2 line
我有一个新项目,我正在尝试设置 Django 调试工具栏。首先,我尝试了快速设置,它只涉及将 'debug_toolbar' 添加到我的已安装应用程序列表中。有了这个,当我转到我的根 URL 时,调试
在 Matlab 中,如果我有一个函数 f,例如签名是 f(a,b,c),我可以创建一个只有一个变量 b 的函数,它将使用固定的 a=a1 和 c=c1 调用 f: g = @(b) f(a1, b,
我不明白为什么 ForEach 中的元素之间有多余的垂直间距在 VStack 里面在 ScrollView 里面使用 GeometryReader 时渲染自定义水平分隔线。 Scrol
我想知道,是否有关于何时使用 session 和 cookie 的指南或最佳实践? 什么应该和什么不应该存储在其中?谢谢! 最佳答案 这些文档很好地了解了 session cookie 的安全问题以及
我在 scipy/numpy 中有一个 Nx3 矩阵,我想用它制作一个 3 维条形图,其中 X 轴和 Y 轴由矩阵的第一列和第二列的值、高度确定每个条形的 是矩阵中的第三列,条形的数量由 N 确定。
假设我用两种不同的方式初始化信号量 sem_init(&randomsem,0,1) sem_init(&randomsem,0,0) 现在, sem_wait(&randomsem) 在这两种情况下
我怀疑该值如何存储在“WORD”中,因为 PStr 包含实际输出。? 既然Pstr中存储的是小写到大写的字母,那么在printf中如何将其给出为“WORD”。有人可以吗?解释一下? #include
我有一个 3x3 数组: var my_array = [[0,1,2], [3,4,5], [6,7,8]]; 并想获得它的第一个 2
我意识到您可以使用如下方式轻松检查焦点: var hasFocus = true; $(window).blur(function(){ hasFocus = false; }); $(win
我是一名优秀的程序员,十分优秀!