mirror of https://github.com/docker/docs.git
Make a paragraph about docker ps concise (#15839)
This commit is contained in:
parent
4795188490
commit
0d14bcb8c3
|
@ -87,7 +87,7 @@ $ curl --request POST \
|
|||
|
||||
## List containers
|
||||
|
||||
Since we ran our container in the background, how do we know if our container is running or what other containers are running on our machine? Well, we can run the `docker ps` command. Just like on Linux, to see a list of processes on your machine we would run the ps command. In the same spirit, we can run the `docker ps` command which will show us a list of containers running on our machine.
|
||||
Since we ran our container in the background, how do we know if our container is running or what other containers are running on our machine? Well, to see a list of containers running on our machine, run `docker ps`. This is similar to how ps command is used to see a list of processes on a Linux machine.
|
||||
|
||||
```console
|
||||
$ docker ps
|
||||
|
|
Loading…
Reference in New Issue