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:
soroush lotfi 2023-07-11 19:29:00 +03:30 committed by GitHub
parent c7bbd0119f
commit e717eaae00
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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