Fix review comments from Stefan

Signed-off-by: Usha Mandya <usha.mandya@docker.com>
This commit is contained in:
Usha Mandya 2021-01-18 15:23:45 +00:00
parent 034dc9a200
commit 7b070a40e2
2 changed files with 5 additions and 5 deletions

View File

@ -182,10 +182,12 @@ Step 2/7 : WORKDIR /code
...
Successfully built e03018e56163
Successfully tagged node-docker:latest
Viewing Local Images
To see a list of images we have on our local machine, we have two options. One is to use the CLI and the other is to use Docker Desktop. Since we are currently working in the terminal lets take a look at listing images with the CLI.
```
## Viewing local images
To see a list of images we have on our local machine, we have two options. One is to use the CLI and the other is to use Docker Desktop. Since we are currently working in the terminal lets take a look at listing images with the CLI.
To list images, simply run the `images` command.
```shell

View File

@ -56,9 +56,7 @@ Now lets rerun the curl command from above.
$ curl --request POST \
--url http://localhost:8000/test \
--header 'content-type: application/json' \
--data '{
"msg": "testing"
}'
--data '{"msg": "testing"}'
{"code":"success","payload":[{"msg":"testing","id":"dc0e2c2b-793d-433c-8645-b3a553ea26de","createDate":"2020-09-01T17:36:09.897Z"}]}
```