diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-05-23 09:07:57 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-23 09:07:57 -0400 |
commit | 0d2209eb6a8ab8276795db2b3b7e5708754c4054 (patch) | |
tree | ac65b756462f92ccc2fdfc61aac74c065a7ae82a | |
parent | 769e777656e62172ccdd1b98989627d6dae57a96 (diff) | |
parent | a0d0207a28e4f55452f6540453d534ca18ab5438 (diff) | |
download | podman-0d2209eb6a8ab8276795db2b3b7e5708754c4054.tar.gz podman-0d2209eb6a8ab8276795db2b3b7e5708754c4054.tar.bz2 podman-0d2209eb6a8ab8276795db2b3b7e5708754c4054.zip |
Merge pull request #14310 from Yuhta28/hotfix/document
[CI:DOCS] fix podman-for-windows.md
-rw-r--r-- | docs/tutorials/podman-for-windows.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/tutorials/podman-for-windows.md b/docs/tutorials/podman-for-windows.md index bb9674774..4e929a14a 100644 --- a/docs/tutorials/podman-for-windows.md +++ b/docs/tutorials/podman-for-windows.md @@ -233,15 +233,15 @@ Linux container. This supports several notation schemes, including: Windows Style Paths: -`podman run -it c:\Users\User\myfolder:/myfolder ubi8-micro ls /myfolder` +`podman run --rm -v c:\Users\User\myfolder:/myfolder ubi8-micro ls /myfolder` Unixy Windows Paths: -`podman run -it /c/Users/User/myfolder:/myfolder ubi8-micro ls /myfolder` +`podman run --rm -v /c/Users/User/myfolder:/myfolder ubi8-micro ls /myfolder` Linux paths local to the WSL filesystem: -`podman run -it /var/myfolder:/myfolder ubi-micro ls /myfolder` +`podman run --rm -v /var/myfolder:/myfolder ubi-micro ls /myfolder` All of the above conventions work, whether running on a Windows prompt or the WSL Linux shell. Although when using Windows paths on Linux, appropriately quote |