diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-09-14 13:14:11 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-14 13:14:11 -0400 |
commit | 6a34045c670b3f0184b4ba88faeb11bb4a58c747 (patch) | |
tree | 856e9ffd0eba7b03c7ee02987f7f61b966eb8ca1 /docs/source/markdown/podman-build.1.md | |
parent | 65b1ff25a3444f16c9b0524f8a02cd6e56976e2b (diff) | |
parent | a55e2a00fcb82485333eeec55aa2eaee338782d7 (diff) | |
download | podman-6a34045c670b3f0184b4ba88faeb11bb4a58c747.tar.gz podman-6a34045c670b3f0184b4ba88faeb11bb4a58c747.tar.bz2 podman-6a34045c670b3f0184b4ba88faeb11bb4a58c747.zip |
Merge pull request #11170 from flouthoc/support-rootfs-overlay
rootfs: Add support for rootfs-overlay.
Diffstat (limited to 'docs/source/markdown/podman-build.1.md')
-rw-r--r-- | docs/source/markdown/podman-build.1.md | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/docs/source/markdown/podman-build.1.md b/docs/source/markdown/podman-build.1.md index a2ed35f89..3278436bd 100644 --- a/docs/source/markdown/podman-build.1.md +++ b/docs/source/markdown/podman-build.1.md @@ -540,6 +540,15 @@ layers are not squashed. Squash all of the new image's layers (including those inherited from a base image) into a single new layer. +#### **--ssh**=*default|id[=socket>|[,]* + +SSH agent socket or keys to expose to the build. +The socket path can be left empty to use the value of `default=$SSH_AUTH_SOCK` + +To later use the ssh agent, use the --mount flag in a `RUN` instruction within a `Containerfile`: + +`RUN --mount=type=ssh,id=id mycmd` + #### **--stdin** Pass stdin into the RUN containers. Sometime commands being RUN within a Containerfile |