diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-09-05 17:44:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-05 17:44:29 +0200 |
commit | 32a493df0c488b793c307a060016dd7ea050dbff (patch) | |
tree | 8072ca951e393a216c42d3397e1a95c1a7f4d947 | |
parent | fcf995c47daa9157bfac74cf821216869e0bd95a (diff) | |
parent | ebd37ede997e32ad4919a93ec7846b100bf98fb0 (diff) | |
download | podman-32a493df0c488b793c307a060016dd7ea050dbff.tar.gz podman-32a493df0c488b793c307a060016dd7ea050dbff.tar.bz2 podman-32a493df0c488b793c307a060016dd7ea050dbff.zip |
Merge pull request #11432 from Utopiah/patch-1
[CI:DOCS] Example says there is not IP then in the next command suggests to use it
-rw-r--r-- | docs/tutorials/podman_tutorial.md | 4 |
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 |