summaryrefslogtreecommitdiffstats
path: root/vendor/mobiledetect/mobiledetectlib/docker-compose.yml
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--vendor/mobiledetect/mobiledetectlib/docker-compose.yml16
1 files changed, 16 insertions, 0 deletions
diff --git a/vendor/mobiledetect/mobiledetectlib/docker-compose.yml b/vendor/mobiledetect/mobiledetectlib/docker-compose.yml
new file mode 100644
index 0000000..58ce75e
--- /dev/null
+++ b/vendor/mobiledetect/mobiledetectlib/docker-compose.yml
@@ -0,0 +1,16 @@
+app:
+ restart: 'on-failure'
+ image: php:7
+ working_dir: /app
+ command: vendor/bin/phpunit -v -c tests/phpunit.xml --coverage-text --strict-coverage --stop-on-risky
+ ports:
+ - "8000:8000"
+ volumes:
+ - .:/app
+
+composer:
+ restart: 'no'
+ image: composer/composer:php7
+ command: install
+ volumes:
+ - .:/app \ No newline at end of file