mirror of https://github.com/docker/docs.git
Fix review comments from Stefan
Signed-off-by: Usha Mandya <usha.mandya@docker.com>
This commit is contained in:
parent
034dc9a200
commit
7b070a40e2
|
@ -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 let’s 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 let’s take a look at listing images with the CLI.
|
||||
|
||||
To list images, simply run the `images` command.
|
||||
|
||||
```shell
|
||||
|
|
|
@ -56,9 +56,7 @@ Now let’s 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"}]}
|
||||
```
|
||||
|
||||
|
|
Loading…
Reference in New Issue