зеркало из https://github.com/microsoft/docker.git
- Added delete all the containers example
This commit is contained in:
Родитель
f26da9638f
Коммит
403f9fc357
|
@ -622,6 +622,15 @@ This will remove the container referenced under the link ``/redis``.
|
|||
This will remove the underlying link between ``/webapp`` and the ``/redis`` containers removing all
|
||||
network communication.
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
$ docker rm `docker ps -a -q`
|
||||
|
||||
|
||||
This command will delete all the stopped containers. The command ``docker ps -a -q`` will return all
|
||||
the existing container's id and the ``rm`` command takes those id's and delete them. The running containers
|
||||
will not be deleted, even though they will appear on that id's list.
|
||||
|
||||
.. _cli_rmi:
|
||||
|
||||
``rmi``
|
||||
|
|
Загрузка…
Ссылка в новой задаче