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.
This commit is contained in:
parent
c7bbd0119f
commit
e717eaae00
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue