Minor update in docker command for displaying logs

Fix:#16194
This commit is contained in:
Nitish Kumar 2022-11-25 16:56:02 +05:30 committed by GitHub
parent 67ce1b85d9
commit f570c9d603
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -242,7 +242,7 @@ With all of that explained, let's start our dev-ready container!
node:12-alpine `
sh -c "yarn install && yarn run dev"
```
3. If we look at the logs for the container (`docker logs <container-id>`), we should see a message indicating it's
3. If we look at the logs for the container (`docker logs -f <container-id>`), we should see a message indicating it's
using the mysql database.
```console