From 20b74088f4dc92e96a1ac3279942d8ff109043f5 Mon Sep 17 00:00:00 2001 From: Jay Xu Date: Sat, 19 Jun 2021 21:24:49 -0700 Subject: [PATCH] Wrong HTTP Method type `curl localhost:5000` is GET request, but in doc it says POST request --- language/python/run-containers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/python/run-containers.md b/language/python/run-containers.md index c8530af233..2aaa8d2736 100644 --- a/language/python/run-containers.md +++ b/language/python/run-containers.md @@ -50,7 +50,7 @@ $ curl localhost:5000 Hello, Docker! ``` -Success! We were able to connect to the application running inside of our container on port 5000. Switch back to the terminal where your container is running and you should see the POST request logged to the console. +Success! We were able to connect to the application running inside of our container on port 5000. Switch back to the terminal where your container is running and you should see the GET request logged to the console. ```shell [31/Jan/2021 23:39:31] "GET / HTTP/1.1" 200 -