summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 6 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 99616c7..be95942 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
-.PHONY: test-all test-7.2 test-7.1 test-7.0
+.PHONY: test-all start test-7.2 test-7.1 test-7.0 stop
-test-all: start test-7.2 test-7.1 test-7.0
+test-all: start test-7.2 test-7.1 test-7.0 stop
test-7.2:
docker-compose exec php-7.2 php /app/vendor/phpunit/phpunit/phpunit --configuration /app/phpunit.xml
@@ -12,4 +12,7 @@ test-7.0:
docker-compose exec php-7.0 php /app/vendor/phpunit/phpunit/phpunit --configuration /app/phpunit.xml
start:
- docker-compose up -d \ No newline at end of file
+ docker-compose up -d
+
+stop:
+ docker-compose stop