We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 461e36e commit dfc3f20Copy full SHA for dfc3f20
1 file changed
chapters/docker-commands.adoc
@@ -15,6 +15,7 @@ Here is the list of commonly used Docker commands:
15
| Run a container | `docker run`
16
| List containers | `docker ps`
17
| Stop a container | `docker stop ${CID}`
18
+| Stop all running containers | `docker stop ``docker ps -q```
19
| Find IP address of the container | `docker inspect --format '{{ .NetworkSettings.IPAddress }}' ${CID}`
20
| Attach to a container | `docker attach ${CID}`
21
| Remove a container | `docker rm ${CID}`
0 commit comments