-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
48 lines (43 loc) · 1.01 KB
/
docker-compose.yml
File metadata and controls
48 lines (43 loc) · 1.01 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
services:
drupal-lint:
image: composer:2.7
profiles: ["lint"]
working_dir: /src
command: bash -c "./scripts/run-drupal-lint.sh"
environment:
TARGET_DRUPAL_CORE_VERSION: 11
volumes:
- .:/src
drupal-lint-auto-fix:
image: composer:2.7
profiles: ["lint"]
working_dir: /src
command: bash -c "./scripts/run-drupal-lint-auto-fix.sh"
environment:
TARGET_DRUPAL_CORE_VERSION: 11
volumes:
- .:/src
drupal-check:
image: composer:2.7
profiles: ["lint"]
working_dir: /
command: bash -c "/src/scripts/run-drupal-check.sh"
tty: true
volumes:
- .:/src
drupal-test:
image: composer:2.7
profiles: ["test"]
working_dir: /
command: bash -c "/src/scripts/run-drupal-tests.sh"
environment:
DRUPAL_RECOMMENDED_PROJECT: 11.2.x-dev
volumes:
- .:/src
e2e-test:
image: composer:2.7
profiles: ["test"]
working_dir: /app
entrypoint: ["bash", "scripts/e2e/run-e2e-tests.sh"]
volumes:
- .:/app