Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions docs/tutorials/podman-for-windows.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,11 +144,12 @@ A curl command against localhost on the PowerShell prompt will return a
successful HTTP response:

```
PS C:\Users\User> curl http://localhost:8080/ -UseBasicParsing
PS C:\Users\User> Invoke-WebRequest -UseBasicParsing http://localhost:8080/

StatusCode : 200
StatusCode : 200
StatusDescription : OK
Content : <html><body><h1>It works!</h1></body></html>
Content : <html><body><h1>It works!</h1></body></html>
[...]
```

As with Linux, to stop, run:
Expand All @@ -164,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!
```

Expand Down