We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c5334b commit 054011eCopy full SHA for 054011e
Makefile
@@ -2,7 +2,6 @@ help:
2
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "⚡ \033[34m%-30s\033[0m %s\n", $$1, $$2}'
3
4
install: build run
5
-test: build run test
6
7
build: ## Build Docker image for local development
8
docker-compose build
@@ -19,7 +18,7 @@ restart: ## Restart containers
19
18
docker-compose restart
20
21
test: ### Run unit testing
22
- docker-compose exec app sh -c "composer test"
+ docker-compose run --rm app sh -c "composer test"
23
24
stop: ## Stop application running in Docker
25
docker-compose kill
0 commit comments