Add stop command to make

This commit is contained in:
Daniel_I_Am 2022-05-28 11:56:40 +02:00
parent 93214abf2b
commit e48f9b70de

View File

@ -12,6 +12,10 @@ help:
run: ## Start all docker containers using docker-compose run: ## Start all docker containers using docker-compose
@docker-compose up -d @docker-compose up -d
.PHONY: stop
stop: ## Stop all docker containers using docker-compose
@docker-compose stop
.PHONY: debug .PHONY: debug
debug: ## Start all docker containers using docker-compose. Attach to stdout debug: ## Start all docker containers using docker-compose. Attach to stdout
@docker-compose up @docker-compose up