-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
27 lines (27 loc) · 737 Bytes
/
docker-compose.yml
File metadata and controls
27 lines (27 loc) · 737 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
services:
tests:
build: ./
working_dir: /project
entrypoint: ["/usr/local/bin/entrypoint.sh", "./vendor/bin/phpunit"]
volumes:
- ./:/project
coverage:
build: ./
working_dir: /project
entrypoint: ["/usr/local/bin/entrypoint.sh", "./vendor/bin/phpunit", "--coverage-text"]
volumes:
- ./:/project
environment:
- XDEBUG_MODE=coverage
analysis:
build: ./
working_dir: /project
entrypoint: ["/usr/local/bin/entrypoint.sh", "./vendor/bin/phpstan", "analyze", "--memory-limit=512M"]
volumes:
- ./:/project
standards:
build: ./
working_dir: /project
entrypoint: ["/usr/local/bin/entrypoint.sh", "./vendor/bin/phpcs"]
volumes:
- ./:/project