mirror of https://github.com/docker/docs.git
Merge pull request #2554 from aanand/clarify-rm-behaviour
Clarify behaviour of 'rm'
This commit is contained in:
commit
12a08255b5
|
@ -344,6 +344,11 @@ class TopLevelCommand(DocoptCommand):
|
||||||
"""
|
"""
|
||||||
Remove stopped service containers.
|
Remove stopped service containers.
|
||||||
|
|
||||||
|
By default, volumes attached to containers will not be removed. You can see all
|
||||||
|
volumes with `docker volume ls`.
|
||||||
|
|
||||||
|
Any data which is not in a volume will be lost.
|
||||||
|
|
||||||
Usage: rm [options] [SERVICE...]
|
Usage: rm [options] [SERVICE...]
|
||||||
|
|
||||||
Options:
|
Options:
|
||||||
|
|
|
@ -20,3 +20,8 @@ Options:
|
||||||
```
|
```
|
||||||
|
|
||||||
Removes stopped service containers.
|
Removes stopped service containers.
|
||||||
|
|
||||||
|
By default, volumes attached to containers will not be removed. You can see all
|
||||||
|
volumes with `docker volume ls`.
|
||||||
|
|
||||||
|
Any data which is not in a volume will be lost.
|
||||||
|
|
Loading…
Reference in New Issue