diff options
author | Tomas Volf <tomas.volf@showmax.com> | 2022-08-23 13:45:15 +0200 |
---|---|---|
committer | Matthew Heon <mheon@redhat.com> | 2022-09-06 14:13:19 -0400 |
commit | d40175e0aebc64a24f4987d2d1a60f3d7cbe7375 (patch) | |
tree | 4774d44361aeffe48e208bcfbf675b345d01ac55 | |
parent | ee9d3fd02147070cb513609b01c5ab4417ebce6b (diff) | |
download | podman-d40175e0aebc64a24f4987d2d1a60f3d7cbe7375.tar.gz podman-d40175e0aebc64a24f4987d2d1a60f3d7cbe7375.tar.bz2 podman-d40175e0aebc64a24f4987d2d1a60f3d7cbe7375.zip |
Document restrictions on transport in FROM
When using remote podman client, not all transports work as expected. So
document this limitation.
Fixes: containers/podman#15141
Signed-off-by: Tomas Volf <tomas.volf@showmax.com>
-rw-r--r-- | docs/source/markdown/podman-build.1.md | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/source/markdown/podman-build.1.md b/docs/source/markdown/podman-build.1.md index bfdfee1ed..745f0bdf3 100644 --- a/docs/source/markdown/podman-build.1.md +++ b/docs/source/markdown/podman-build.1.md @@ -386,6 +386,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 |