使用 docker composer-compose 转发 ssh 密钥
在 docker 中18.09+我们可以使用以下方法在构建镜像时使用转发的 ssh 密钥: # syntax=docker/dockerfile:experimental # example file FROM node:10.15.3-alpine RUN apk update && apk add openssh-client git # use the forwarded ssh key RUN --mount=type=ssh git clone <repo> 然后我们将像这样构建图像: DOCKER_BUIL...