summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorFabien Benetou <fabien-services@benetou.fr>2021-09-03 10:15:40 +0200
committerUtopiah <fabien-services@benetou.fr>2021-09-05 17:23:21 +0200
commitebd37ede997e32ad4919a93ec7846b100bf98fb0 (patch)
tree711d69e449d621c3dde8b75e16ed5af2b60b3220 /docs
parent858d3e47c26788e64083842cc6617b666f4279a1 (diff)
downloadpodman-ebd37ede997e32ad4919a93ec7846b100bf98fb0.tar.gz
podman-ebd37ede997e32ad4919a93ec7846b100bf98fb0.tar.bz2
podman-ebd37ede997e32ad4919a93ec7846b100bf98fb0.zip
Example says there is not IP then in the next command suggests to use it
Signed-off-by: Utopiah <fabien-services@benetou.fr>
Diffstat (limited to 'docs')
-rw-r--r--docs/tutorials/podman_tutorial.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/tutorials/podman_tutorial.md b/docs/tutorials/podman_tutorial.md
index 7419f445e..92d0c41b1 100644
--- a/docs/tutorials/podman_tutorial.md
+++ b/docs/tutorials/podman_tutorial.md
@@ -50,11 +50,11 @@ Note: The -l is a convenience argument for **latest container**. You can also u
of -l.
### Testing the httpd server
-Now that we have the IP address of the container, we can test the network communication between the host
+As we do not have the IP address of the container, we can test the network communication between the host
operating system and the container using curl. The following command should display the index page of our
containerized httpd server.
```console
-curl http://<IP_address>:8080
+curl http://localhost:8080
```
### Viewing the container's logs