这个周末我设置了我的 WSL2、Docker 和 vs 代码环境。
我在尝试使用 git 时发现了一个问题:
root@bb7f765df0d6:/var/www/html# git clone git@github.com:hsimah/my-repo.git
Cloning into 'my-repo'...
fatal: cannot run C:/Windows/System32/OpenSSH/ssh.exe: No such file or directory
fatal: unable to fork
Dockerfile:
FROM wordpress:latest
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update \
&& apt-get -y install --no-install-recommends apt-utils dialog 2>&1 \
&& apt-get -y install git \
&& apt-get autoremove -y \
&& apt-get clean -y \
&& rm -rf /var/lib/apt/lists/*
ENV DEBIAN_FRONTEND=dialog
如果我删除 git 的 Dockerfile 安装并apt-get update && apt-get install git
从我的容器运行,则没有问题。在这种情况下,git 使用我的主机 ssh 密钥(通过 Windows 上的 ssh-agent 服务加载),并且可以通过终端或 vs 代码本身进行拉取和推送。
日志中没有错误或警告。