Skip to content

Commit 3548ae1

Browse files
Merge pull request #26853 from shiavm006/issue-1
ocs(run,create): document remote transport limitations for oci-archive/docker-archive/docker-daemon
2 parents 5a8d0d9 + 96d9a00 commit 3548ae1

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

docs/source/markdown/podman-create.1.md.in

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,19 +49,22 @@ file, and it must not contain a digest.
4949

5050
$ podman save --format docker-archive fedora -o /tmp/fedora
5151
$ podman create docker-archive:/tmp/fedora echo hello
52+
Note: On remote clients, including Mac and Windows (excluding WSL2) machines, this transport is not supported.
5253

5354
**docker-daemon:**_docker-reference_
5455
An image in _docker-reference_ format stored in the docker daemon internal storage. The _docker-reference_ can also be an image ID (docker-daemon:algo:digest).
5556

5657
$ sudo docker pull fedora
5758
$ sudo podman create docker-daemon:docker.io/library/fedora echo hello
59+
Note: On remote clients, including Mac and Windows (excluding WSL2) machines, this transport is not supported.
5860

5961
**oci-archive:**_path_**:**_tag_
6062
An image in a directory compliant with the "Open Container Image Layout Specification" at the specified _path_
6163
and specified with a _tag_.
6264

6365
$ podman save --format oci-archive fedora -o /tmp/fedora
6466
$ podman create oci-archive:/tmp/fedora echo hello
67+
Note: On remote clients, including Mac and Windows (excluding WSL2) machines, this transport is not supported.
6568

6669
## OPTIONS
6770

docs/source/markdown/podman-run.1.md.in

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,19 +69,22 @@ file, and it must not contain a digest.
6969

7070
$ podman save --format docker-archive fedora -o /tmp/fedora
7171
$ podman run docker-archive:/tmp/fedora echo hello
72+
Note: On remote clients, including Mac and Windows (excluding WSL2) machines, this transport is not supported.
7273

7374
**docker-daemon:**_docker-reference_
7475
An image in _docker-reference_ format stored in the docker daemon internal storage. The _docker-reference_ can also be an image ID (docker-daemon:algo:digest).
7576

7677
$ sudo docker pull fedora
7778
$ sudo podman run docker-daemon:docker.io/library/fedora echo hello
79+
Note: On remote clients, including Mac and Windows (excluding WSL2) machines, this transport is not supported.
7880

7981
**oci-archive:**_path_**:**_tag_
8082
An image in a directory compliant with the "Open Container Image Layout Specification" at the specified _path_
8183
and specified with a _tag_.
8284

8385
$ podman save --format oci-archive fedora -o /tmp/fedora
8486
$ podman run oci-archive:/tmp/fedora echo hello
87+
Note: On remote clients, including Mac and Windows (excluding WSL2) machines, this transport is not supported.
8588

8689
## OPTIONS
8790
@@option add-host

0 commit comments

Comments
 (0)