Add make command for removing tests volumes

This commit is contained in:
Brandon Myers 2018-02-09 13:56:37 -06:00
Родитель e9a90ab888
Коммит 1e3a893e2b
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 8AA79AD83045BBC7
1 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -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