Remove deprecated --all option for `docker-compose rm` (#2821)

* remove --all from docker-compose rm
This commit is contained in:
Shubheksha Jalan 2017-04-20 01:19:25 +05:30 committed by Misty Stanley-Jones
parent 78df57211c
commit 2ec7b0d591
1 changed files with 1 additions and 2 deletions

View File

@ -12,7 +12,6 @@ Options:
-f, --force Don't ask to confirm removal -f, --force Don't ask to confirm removal
-s, --stop Stop the containers, if required, before removing -s, --stop Stop the containers, if required, before removing
-v Remove any anonymous volumes attached to containers -v Remove any anonymous volumes attached to containers
-a, --all Deprecated - no effect.
``` ```
Removes stopped service containers. Removes stopped service containers.
@ -30,4 +29,4 @@ $ docker-compose rm
Going to remove djangoquickstart_web_run_1 Going to remove djangoquickstart_web_run_1
Are you sure? [yN] y Are you sure? [yN] y
Removing djangoquickstart_web_run_1 ... done Removing djangoquickstart_web_run_1 ... done
``` ```