From 58c2fcd2d42950e583f6032cb115a5922690228c Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Sat, 13 Sep 2025 17:49:43 +0200 Subject: [PATCH] Fix incorrect function call Changes made in this commit will fix #16168 The current command in the docs expect a `docker.exe` file to exist in the current working directory. As this is most likely a typo, changes made in this commit fix this issue. Signed-off-by: Manuel Thalmann --- docs/tutorials/podman-for-windows.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorials/podman-for-windows.md b/docs/tutorials/podman-for-windows.md index 47d53d214a..10d82cfb2a 100644 --- a/docs/tutorials/podman-for-windows.md +++ b/docs/tutorials/podman-for-windows.md @@ -165,7 +165,7 @@ Docker. Provided there is no other service listening on the Docker API pipe; no special settings will be required. ``` -PS C:\Users\User> .\docker.exe run -it fedora echo "Hello Podman!" +PS C:\Users\User> docker run -it fedora echo "Hello Podman!" Hello Podman! ```