Skip to content

Commit 036d3b9

Browse files
committed
feat: add stop-all command to Makefile for stopping all containers
1 parent 69f7c11 commit 036d3b9

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,9 @@ dbs: ## Start databases
176176

177177
stop: ## Stop the container
178178
@docker stop $(APP_NAME) || true
179+
180+
stop-all: ## Stop all containers
181+
@docker stop $(APP_NAME) || true
179182
@docker stop $(BASE_NAME)-mongodb || true
180183
@docker stop $(BASE_NAME)-redis || true
181184
@docker stop $(BASE_NAME)-maildev || true

0 commit comments

Comments
 (0)