Skip to content

Commit a14ab54

Browse files
authored
Add make stop command (#248)
1 parent 3724a82 commit a14ab54

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

Makefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,11 @@ down: ## Down the dev environment
4141
$(DOCKER_COMPOSE_DEV) down --remove-orphans
4242
endif
4343

44+
ifeq ($(PRIMARY_GOAL),stop)
45+
stop: ## Stop the dev environment
46+
$(DOCKER_COMPOSE_DEV) down --remove-orphans
47+
endif
48+
4449
ifeq ($(PRIMARY_GOAL),clear)
4550
clear: ## Remove development docker containers and volumes
4651
$(DOCKER_COMPOSE_DEV) down --volumes --remove-orphans

0 commit comments

Comments
 (0)