From cdb61db9c4cf4e59e8a38ec979b331d24b5abd5f Mon Sep 17 00:00:00 2001 From: Carlos Tadeu Panato Junior Date: Tue, 12 Nov 2019 08:32:06 +0100 Subject: [PATCH] add stop-docker to stop make command (#13020) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 60ebc1dc33..8f83b2b516 100644 --- a/Makefile +++ b/Makefile @@ -401,7 +401,7 @@ stop-client: ## Stops the webapp. cd $(BUILD_WEBAPP_DIR) && $(MAKE) stop -stop: stop-server stop-client ## Stops server and client. +stop: stop-server stop-client stop-docker ## Stops server, client and the docker compose. restart: restart-server restart-client ## Restarts the server and webapp.