From 9c1549585e0d8a4613954bbfc194dd0dc0a537a8 Mon Sep 17 00:00:00 2001 From: David Steele Date: Fri, 15 Mar 2019 22:18:56 +0400 Subject: [PATCH] Add command for removing all Docker containers to the Vagrantfile. --- test/Vagrantfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/Vagrantfile b/test/Vagrantfile index 68d7dcc70..5602c109b 100644 --- a/test/Vagrantfile +++ b/test/Vagrantfile @@ -110,6 +110,11 @@ Vagrant.configure(2) do |config| #--------------------------------------------------------------------------------------------------------------------------- echo 'Build End' && date + + # Useful commands + #--------------------------------------------------------------------------------------------------------------------------- + # Force remove all containers: + # docker rm -f $(docker ps -a -q) SHELL # Don't share the default vagrant folder