DockerCLI/vendor/github.com/moby/buildkit/session
Akihiro Suda db7399a016 build: add SSH agent socket forwarder (`docker build --ssh $SSHMOUNTID=$SSH_AUTH_SOCK`)
Unlike `docker build --secret`, `docker build --ssh` allows the build container to
use SSH keys with passphrases.

  $ eval $(ssh-agent)
  $ ssh-add ~/.ssh/id_rsa
  (Input your passphrase here)
  $ docker build --ssh default=$SSH_AUTH_SOCK ...

This feature requires the daemon with `CapExecMountSSH` build capability (moby/moby#37973) .

Currently, the official Dockerfile frontend does not provide the syntax for using the SSH forwarder.

However, the experimental `RUN --mount=type=ssh` syntax can be enabled by using
the Dockerfile frontend image built with the `BUILDTAGS="dfrunmount dfssh"`, via the `# syntax =` "shebang".

The Dockerfile for the Dockerfile frontend is available at  github.com/moby/buildkit/frontend/dockerfile/cmd/dockerfile-frontend)
The pre-built image is also available as `tonistiigi/dockerfile:ssh20181002` .

An example Dockerfile with `RUN --mount=type=ssh`:

  # syntax = tonistiigi/dockerfile:ssh20181002
  FROM alpine
  RUN apk add --no-cache openssh-client
  RUN mkdir -p -m 0700 ~/.ssh && ssh-keyscan gitlab.com >> ~/.ssh/known_hosts
  RUN --mount=type=ssh ssh git@gitlab.com | tee /hello
  # "Welcome to GitLab, @GITLAB_USERNAME_ASSOCIATED_WITH_SSHKEY" should be printed here

More info available at moby/buildkit#608, moby/buildkit#655

Signed-off-by: Akihiro Suda <suda.akihiro@lab.ntt.co.jp>
2018-10-05 19:56:32 +09:00
..
auth build: add experimental buildkit base 2018-06-09 20:51:30 +00:00
filesync bump up buildkit 2018-10-05 18:14:03 +09:00
grpchijack Bump buildkit and dependencies to 39404586a50d1b9d0fb1c578cf0f4de7bdb7afe5 2018-09-26 15:45:48 +02:00
secrets build: implement build secrets with buildkit 2018-08-17 14:01:32 +00:00
sshforward build: add SSH agent socket forwarder (`docker build --ssh $SSHMOUNTID=$SSH_AUTH_SOCK`) 2018-10-05 19:56:32 +09:00
context.go bump moby/moby and dependencies to 14ce1f1cf48e9859223c6311de58aec4dc0f046c 2017-09-29 17:44:49 +02:00
grpc.go Bump moby version (and its dependencies) 2018-06-08 11:26:10 +02:00
manager.go Bump moby version (and its dependencies) 2018-06-08 11:26:10 +02:00
session.go Bump moby version (and its dependencies) 2018-06-08 11:26:10 +02:00