From 1e3a893e2b99d500d44f9ec735292d2b22e86106 Mon Sep 17 00:00:00 2001 From: Brandon Myers Date: Fri, 9 Feb 2018 13:56:37 -0600 Subject: [PATCH] Add make command for removing tests volumes --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 483e9687..f74f50ce 100644 --- a/Makefile +++ b/Makefile @@ -19,6 +19,7 @@ # make multiple-stop - stop new mozdef environment in multiple containers # make multiple-stop-tests - stop new mozdef environment for tests in multiple containers # make multiple-rm - stop new mozdef environment in multiple containers and deattach volumes +# make multiple-rm-tests - stop new mozdef tests environment in multiple containers and deattach volumes # make multiple-rebuild - build, stop and run new mozdef environment in multiple containers # make multiple-rebuild-new - build, stop/rm and run new mozdef environment in multiple containers # make multiple-rebuild-tests - build, stop/rm and run new mozdef environment for tests in multiple containers @@ -96,10 +97,13 @@ multiple-stop-tests: multiple-rm: -docker-compose -f docker/compose/docker-compose.yml -p $(NAME) down -v --remove-orphans +multiple-rm-tests: + -docker-compose -f docker/compose/docker-compose-tests.yml -p $(NAME) down -v --remove-orphans + multiple-rebuild: multiple-build multiple-stop multiple-run multiple-rebuild-new: multiple-build multiple-rm multiple-run -multiple-rebuild-tests: multiple-build-tests multiple-stop-tests multiple-run-tests +multiple-rebuild-tests: multiple-build-tests multiple-rm-tests multiple-run-tests .PHONY: multiple-build multiple-run multiple-stop multiple-rebuild