diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-08-23 16:23:08 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-23 16:23:08 -0400 |
commit | 2651009c48c4ec5c5b4a52326f23948718c23768 (patch) | |
tree | 042b4b8e197166aa0e28dbd376b4b35739244b31 /docs/source/markdown | |
parent | edde8570ce7d15baaa33a4a48499bad4cf3377e4 (diff) | |
parent | 5b06b2e77b07f35e489e307e296f26016cd4aa0c (diff) | |
download | podman-2651009c48c4ec5c5b4a52326f23948718c23768.tar.gz podman-2651009c48c4ec5c5b4a52326f23948718c23768.tar.bz2 podman-2651009c48c4ec5c5b4a52326f23948718c23768.zip |
Merge pull request #15429 from graywolf-at-work/document-transport
Document restrictions on transport in FROM
Diffstat (limited to 'docs/source/markdown')
-rw-r--r-- | docs/source/markdown/podman-build.1.md.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/source/markdown/podman-build.1.md.in b/docs/source/markdown/podman-build.1.md.in index 87a21a7ae..693e0d3b9 100644 --- a/docs/source/markdown/podman-build.1.md.in +++ b/docs/source/markdown/podman-build.1.md.in @@ -293,6 +293,12 @@ environment variable. `export BUILDAH_FORMAT=docker` Overrides the first `FROM` instruction within the Containerfile. If there are multiple FROM instructions in a Containerfile, only the first is changed. +With the remote podman client, not all container transports will work as +expected. For example, oci-archive:/x.tar will reference /x.tar on the remote +machine instead of on the client. If you need to support remote podman clients, +it is best to restrict yourself to containers-storage: and docker:// +transports. + #### **--help**, **-h** Print usage statement |