diff options
author | Yuta <yuta_mori@outlook.jp> | 2022-05-21 16:11:03 +0900 |
---|---|---|
committer | Yuta <yuta_mori@outlook.jp> | 2022-05-21 17:02:37 +0900 |
commit | a0d0207a28e4f55452f6540453d534ca18ab5438 (patch) | |
tree | 5be9f97150940ace023f6cda7d909a2c782f9284 | |
parent | 5c51e1d26ea7cb942008cf0e740bc16cb44bb2cf (diff) | |
download | podman-a0d0207a28e4f55452f6540453d534ca18ab5438.tar.gz podman-a0d0207a28e4f55452f6540453d534ca18ab5438.tar.bz2 podman-a0d0207a28e4f55452f6540453d534ca18ab5438.zip |
fix podman-for-windows.md
Signed-off-by: Yuta <yuta_mori@outlook.jp>
-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 |