From e717eaae0036c4de07767ea978236bf6fd4b4c7a Mon Sep 17 00:00:00 2001 From: soroush lotfi <82094903+slotfi909@users.noreply.github.com> Date: Tue, 11 Jul 2023 19:29:00 +0330 Subject: [PATCH] Update README.md (port number) not sure if I'm missing something but the tutorial provided in this link [https://docs.docker.com/get-started/02_our_app/] assumes that this container runs using port 3000 which running a "docker logs" command confirms it. so instead of using port 80 in host, port number 3000 should be used to see the result. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5ccd135dd..fdd4c5c6c 100644 --- a/README.md +++ b/README.md @@ -20,10 +20,10 @@ into depth, it covers the following topics: If you wish to run the tutorial, you can use the following command after installing Docker Desktop: ```bash -docker run -d -p 80:80 docker/getting-started +docker run -d -p 3000:3000 docker/getting-started ``` -Once it has started, you can open your browser to [http://localhost](http://localhost). +Once it has started, you can open your browser to [http://localhost:3000](http://localhost:3000). ## Development