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 <m@nuth.ch>
This commit is contained in:
Manuel Thalmann
2025-09-13 17:49:43 +02:00
committed by Jesse Taube
parent 2e84246ad5
commit 58c2fcd2d4

View File

@@ -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!
```