我正在使用this post的建议来实现Docker secrets,以便可以使用本地SSH密钥来验证对我的容器对Github的访问。我在MacOS上,没有使用Docker swarm。这是我的设置:
docker-compose.yml
version: '3.1'
services:
[servicename]:
secrets:
- ssh_private_key
[...]
secrets:
ssh_private_key:
file: ~/.ssh/id_rsa
Dockerfile
FROM python:3.7 as intermediate
RUN mkdir /root/.ssh/
RUN ln -s /run/secrets/ssh_private_key /root/.ssh/id_rsa
RUN touch /root/.ssh/known_hosts
RUN ssh-keyscan github.com >> /root/.ssh/known_hosts
COPY requirements_private_repos.txt ./
RUN pip install --no-cache-dir -r requirements_private_repos.txt
当我尝试运行docker-compose build
并使用SSH密钥从私有远程存储库中提取时,出现以下错误:
Permission denied (publickey).
fatal: Could not read from remote repository.
我能够远程访问docker映像,并看到秘密正在/run/secrets/ssh_private_key
中创建和填充。
为什么在Dockerfile中使用链接时不起作用?如果Docker机密不是正确的方法,是否有更好的方法将SSH密钥从MacOS共享到Docker?
答案 0 :(得分:2)
您不能在构建短语上使用运行时机密。您可以使用多阶段构建将机密复制到映像,以便在下一阶段将其丢弃,也可以使用Docker 18.09中引入的新的构建时机密。
对于多阶段方法,您可以执行以下操作:
FROM python:3.7 as intermediate
COPY id_rsa /root/.ssh/id_rsa # your private key must be on the build context
RUN touch /root/.ssh/known_hosts
RUN ssh-keyscan github.com >> /root/.ssh/known_hosts
COPY requirements_private_repos.txt ./
RUN pip install --no-cache-dir -r requirements_private_repos.txt
FROM python:3.7
COPY --from=intermediate XXXX YYYY # copy your modules, this image won't have the ssh private key
对于新方法,您可以执行以下操作,而我自己还没有尝试过此方法(需要在主机上运行ssh-agent):
FROM python:3.7 as intermediate
RUN touch /root/.ssh/known_hosts
RUN ssh-keyscan github.com >> /root/.ssh/known_hosts
COPY requirements_private_repos.txt ./
RUN --mount=type=ssh pip install --no-cache-dir -r requirements_private_repos.txt
然后使用以下内容构建图像:
docker build --ssh default . -t myimage
查看文档以获取有关新方法的更多信息: