mirror of https://github.com/docker/compose.git
Fix KeyError when `-v` is not specified in `fig rm`
This commit is contained in:
parent
48e7b4b0a6
commit
96a92a73f1
|
@ -182,7 +182,7 @@ class TopLevelCommand(Command):
|
|||
print("Going to remove", list_containers(stopped_containers))
|
||||
if yesno("Are you sure? [yN] ", default=False):
|
||||
self.project.remove_stopped(service_names=options['SERVICE'],
|
||||
remove_volumes=options['-v'])
|
||||
remove_volumes=options.get('-v', False))
|
||||
else:
|
||||
print("No stopped containers")
|
||||
|
||||
|
|
Loading…
Reference in New Issue